This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avformat/brstm: lower magic number, fixes decoding of some files
Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n3.1
Paul B Mahol
10 years ago
parent
6518cbc52a
commit
76466ab214
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/brstm.c
+ 1
- 1
libavformat/brstm.c
View File
@@ -169,7 +169,7 @@ static int read_header(AVFormatContext *s)
}
size = read32(s);
if (size <
192
)
if (size <
40
)
return AVERROR_INVALIDDATA;
avio_skip(s->pb, 4); // unknown
h1offset = read32(s);
Write
Preview
Loading…
Cancel
Save