From b5e80e34b0bfd02f6575f5a1081cbcf52ce679c8 Mon Sep 17 00:00:00 2001 From: Omar Vega Ramos Date: Tue, 3 Jan 2017 17:14:40 -0500 Subject: handbrake-1.0.1-1.parabola1: updating version --- libre/handbrake/handbrake-supress-clip_id.patch | 38 +++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 libre/handbrake/handbrake-supress-clip_id.patch (limited to 'libre/handbrake/handbrake-supress-clip_id.patch') diff --git a/libre/handbrake/handbrake-supress-clip_id.patch b/libre/handbrake/handbrake-supress-clip_id.patch new file mode 100644 index 000000000..0570f23e8 --- /dev/null +++ b/libre/handbrake/handbrake-supress-clip_id.patch @@ -0,0 +1,38 @@ +--- HandBrake-1.0.1.orig/libhb/bd.c 2016-12-29 16:07:59.000000000 -0500 ++++ HandBrake-1.0.1/libhb/bd.c 2017-01-03 16:59:37.551990672 -0500 +@@ -234,24 +234,6 @@ + return 1; + } + +-static void show_clip_list( BLURAY_TITLE_INFO * ti ) +-{ +- int ii; +- +- for (ii = 0; ii < ti->clip_count; ii++) +- { +- BLURAY_CLIP_INFO * ci = &ti->clips[ii]; +- int64_t duration = ci->out_time - ci->in_time; +- int hh, mm, ss; +- +- hh = duration / (90000 * 60 * 60); +- mm = (duration / (90000 * 60)) % 60; +- ss = (duration / 90000) % 60; +- hb_log("bd:\t\t%s.M2TS -- Duration: %02d:%02d:%02d", +- ti->clips[ii].clip_id, hh, mm, ss); +- } +-} +- + /*********************************************************************** + * hb_bd_title_scan + **********************************************************************/ +@@ -335,10 +317,6 @@ + hb_log( "bd: ignoring title (too short)" ); + goto fail; + } +- if (global_verbosity_level >= 2) +- { +- show_clip_list(ti); +- } + + BLURAY_STREAM_INFO * bdvideo = &ti->clips[0].video_streams[0]; + -- cgit v1.2.3