diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-05-31 00:46:02 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-05-31 00:46:02 +0200 |
commit | 76853a3e0ce4d4ef09ffcca7307991b8db832cd4 (patch) | |
tree | a2a73b931a7391246ba02de38546e9b3fc83b840 /libavformat/wtvdec.c | |
parent | a1fc1d2e1b4a5bcfd07549dce9735f24237aa32e (diff) | |
download | ffmpeg-76853a3e0ce4d4ef09ffcca7307991b8db832cd4.tar.gz |
libavformat: ff_get_bmp_header: return esize too
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/wtvdec.c')
-rw-r--r-- | libavformat/wtvdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/wtvdec.c b/libavformat/wtvdec.c index e25bb5ff54..9157042d08 100644 --- a/libavformat/wtvdec.c +++ b/libavformat/wtvdec.c @@ -522,7 +522,7 @@ static int parse_videoinfoheader2(AVFormatContext *s, AVStream *st) AVIOContext *pb = wtv->pb; avio_skip(pb, 72); // picture aspect ratio is unreliable - ff_get_bmp_header(pb, st); + ff_get_bmp_header(pb, st, NULL); return 72 + 40; } |