mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 19:49:56 +00:00
asfdec: 10l, fix the minimum asf video stream header size
This fixes the regression test breakage. Originally committed as revision 24354 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ffe72624e7
commit
d970ec7554
@ -362,7 +362,7 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
||||
break;
|
||||
}
|
||||
} else if (type == AVMEDIA_TYPE_VIDEO &&
|
||||
gsize - (url_ftell(pb) - pos1 + 24) >= 53) {
|
||||
gsize - (url_ftell(pb) - pos1 + 24) >= 51) {
|
||||
get_le32(pb);
|
||||
get_le32(pb);
|
||||
get_byte(pb);
|
||||
|
Loading…
Reference in New Issue
Block a user