summaryrefslogtreecommitdiff
path: root/libre/handbrake/handbrake-supress-clip_id.patch
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-01-03 17:14:40 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-01-03 17:14:40 -0500
commitb5e80e34b0bfd02f6575f5a1081cbcf52ce679c8 (patch)
tree4e7fadb76e28f99bea9061963286b6a6aa4b5f5f /libre/handbrake/handbrake-supress-clip_id.patch
parentae146062c3f94fdf3002ee896abe556ec5261042 (diff)
downloadabslibre-b5e80e34b0bfd02f6575f5a1081cbcf52ce679c8.tar.gz
abslibre-b5e80e34b0bfd02f6575f5a1081cbcf52ce679c8.tar.bz2
abslibre-b5e80e34b0bfd02f6575f5a1081cbcf52ce679c8.zip
handbrake-1.0.1-1.parabola1: updating version
Diffstat (limited to 'libre/handbrake/handbrake-supress-clip_id.patch')
-rw-r--r--libre/handbrake/handbrake-supress-clip_id.patch38
1 files changed, 38 insertions, 0 deletions
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];
+