[SCM] libav/experimental: fixed unsigned pb

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:29:40 UTC 2013


The following commit has been merged in the experimental branch:
commit d78647e8b4ae46352d689179079a65cc7e1d1efe
Author: Fabrice Bellard <fabrice at bellard.org>
Date:   Mon Jul 23 18:58:11 2001 +0000

    fixed unsigned pb
    
    
    Originally committed as revision 7 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c
index 3e2e523..5b5411b 100644
--- a/libavcodec/mpeg12.c
+++ b/libavcodec/mpeg12.c
@@ -69,7 +69,8 @@ static void put_header(MpegEncContext *s, int header)
 static void mpeg1_encode_sequence_header(MpegEncContext *s)
 {
         unsigned int vbv_buffer_size;
-        unsigned int fps, n, v;
+        unsigned int fps, v;
+        int n;
         UINT64 time_code;
         
         if ((s->picture_number % s->gop_size) == 0) {

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list