[SCM] libav/experimental: Do not uselessly read version string into a buffer.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:43:25 UTC 2013


The following commit has been merged in the experimental branch:
commit ac2b2226ac2c5e151bcf0760948a775329ef21b3
Author: Reimar Döffinger <Reimar.Doeffinger at gmx.de>
Date:   Tue Apr 7 21:16:11 2009 +0000

    Do not uselessly read version string into a buffer.
    
    Originally committed as revision 18359 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/nuv.c b/libavformat/nuv.c
index 3339a74..2d6e93a 100644
--- a/libavformat/nuv.c
+++ b/libavformat/nuv.c
@@ -123,14 +123,14 @@ static int get_codec_data(ByteIOContext *pb, AVStream *vst,
 static int nuv_header(AVFormatContext *s, AVFormatParameters *ap) {
     NUVContext *ctx = s->priv_data;
     ByteIOContext *pb = s->pb;
-    char id_string[12], version_string[5];
+    char id_string[12];
     double aspect, fps;
     int is_mythtv, width, height, v_packs, a_packs;
     int stream_nr = 0;
     AVStream *vst = NULL, *ast = NULL;
     get_buffer(pb, id_string, 12);
     is_mythtv = !memcmp(id_string, "MythTVVideo", 12);
-    get_buffer(pb, version_string, 5);
+    url_fskip(pb, 5); // version string
     url_fskip(pb, 3); // padding
     width = get_le32(pb);
     height = get_le32(pb);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list