[SCM] libav/experimental: use correct types

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:42:14 UTC 2013


The following commit has been merged in the experimental branch:
commit e4917f59a5406aff1e11ed86d61e710807ff48e9
Author: Mike Melanson <mike at multimedia.cx>
Date:   Sat Nov 20 23:53:24 2004 +0000

    use correct types
    
    Originally committed as revision 3698 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c
index fbec970..3295e34 100644
--- a/libavformat/nsvdec.c
+++ b/libavformat/nsvdec.c
@@ -233,7 +233,7 @@ static int nsv_resync(AVFormatContext *s)
 {
     NSVContext *nsv = s->priv_data;
     ByteIOContext *pb = &s->pb;
-    uint32 v = 0;
+    uint32_t v = 0;
     int i;
     
     PRINT(("%s(), offset = %Ld, state = %d\n", __FUNCTION__, url_ftell(pb), nsv->state));
@@ -541,13 +541,13 @@ static int nsv_read_chunk(AVFormatContext *s, int fill_header)
     AVStream *st[2] = {NULL, NULL};
     NSVStream *nst;
     AVPacket *pkt;
-    uint32 v = 0;
+    uint32_t v = 0;
     int i, err = 0;
-    uint8 auxcount; /* number of aux metadata, also 4 bits of vsize */
-    uint32 vsize;
-    uint16 asize;
-    uint16 auxsize;
-    uint32 auxtag;
+    uint8_t auxcount; /* number of aux metadata, also 4 bits of vsize */
+    uint32_t vsize;
+    uint16_t asize;
+    uint16_t auxsize;
+    uint32_t auxtag;
     
     PRINT(("%s(%d)\n", __FUNCTION__, fill_header));
     
@@ -586,7 +586,7 @@ null_chunk_retry:
               ((auxtag >> 24) & 0x0ff),
               auxsize));
         url_fskip(pb, auxsize);
-        vsize -= auxsize + sizeof(uint16) + sizeof(uint32); /* that's becoming braindead */
+        vsize -= auxsize + sizeof(uint16_t) + sizeof(uint32_t); /* that's becoming braindead */
     }
     
     if (url_feof(pb))

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list