[SCM] FFmpeg packaging branch, master, updated. debian/0.5+svn20090706-1-13-gc1bc30d

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Thu Oct 8 17:22:45 UTC 2009


The following commit has been merged in the master branch:
commit c1bc30d1370dab75f103bc6dce0bbe95f482099e
Author: Reinhard Tartler <siretart at tauware.de>
Date:   Thu Oct 1 21:53:45 2009 +0200

    add patch for issue1245

diff --git a/debian/patches/issue1245.patch b/debian/patches/issue1245.patch
new file mode 100644
index 0000000..23e180a
--- /dev/null
+++ b/debian/patches/issue1245.patch
@@ -0,0 +1,29 @@
+------------------------------------------------------------------------
+r19319 | michael | 2009-07-01 20:50:31 +0200 (Mi, 01. Jul 2009) | 3 lines
+
+Make arguments of av_set_pts_info() unsigned.
+Fixes issue1240/mpeg1/smclockmpeg1.avi.3.1
+
+
+--- a/libavformat/avformat.h
++++ b/libavformat/avformat.h
+@@ -1035,7 +1035,7 @@ AVChapter *ff_new_chapter(AVFormatContex
+  * @param pts_den denominator to convert to seconds (MPEG: 90000)
+  */
+ void av_set_pts_info(AVStream *s, int pts_wrap_bits,
+-                     int pts_num, int pts_den);
++                     unsigned int pts_num, unsigned int pts_den);
+ 
+ #define AVSEEK_FLAG_BACKWARD 1 ///< seek backward
+ #define AVSEEK_FLAG_BYTE     2 ///< seeking based on position in bytes
+--- a/libavformat/utils.c
++++ b/libavformat/utils.c
+@@ -3286,7 +3286,7 @@ char *ff_data_to_hex(char *buff, const u
+ }
+ 
+ void av_set_pts_info(AVStream *s, int pts_wrap_bits,
+-                     int pts_num, int pts_den)
++                     unsigned int pts_num, unsigned int pts_den)
+ {
+     unsigned int gcd= av_gcd(pts_num, pts_den);
+     s->pts_wrap_bits = pts_wrap_bits;
diff --git a/debian/patches/series b/debian/patches/series
index 336ceae..12483d0 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -3,4 +3,5 @@ ffmpeg-debian_hurd.patch
 fix-qtrle-encoding-when-previous-frame-linesize.patch
 aac-regression.patch
 fix-dv-seeking.patch
+issue1245.patch
 900_doxyfile

-- 
FFmpeg packaging



More information about the pkg-multimedia-commits mailing list