[SCM] libav/experimental: Make arguments of av_set_pts_info() unsigned. Fixes issue1240/mpeg1/smclockmpeg1.avi.3.1

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:48:28 UTC 2013


The following commit has been merged in the experimental branch:
commit dec14949a6998179d48de36f2df57c237b970ed1
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Wed Jul 1 18:50:31 2009 +0000

    Make arguments of av_set_pts_info() unsigned.
    Fixes issue1240/mpeg1/smclockmpeg1.avi.3.1
    
    Originally committed as revision 19319 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 57faaed..2185edc 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -963,7 +963,7 @@ AVChapter *ff_new_chapter(AVFormatContext *s, int id, AVRational time_base,
  * @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
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 9325e3d..b1c0363 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -3304,7 +3304,7 @@ char *ff_data_to_hex(char *buff, const uint8_t *src, int s)
 }
 
 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;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list