From ac2b2226ac2c5e151bcf0760948a775329ef21b3 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Tue, 7 Apr 2009 21:16:11 +0000 Subject: Do not uselessly read version string into a buffer. Originally committed as revision 18359 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/nuv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/nuv.c') diff --git a/libavformat/nuv.c b/libavformat/nuv.c index 3339a74991..2d6e93a79c 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); -- cgit v1.2.3