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
EA cdata demuxer: support files with 20 byte header
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.8
Peter Ross
Michael Niedermayer
15 years ago
parent
db62d89833
commit
c2a8f12585
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/eacdata.c
+ 1
- 1
libavformat/eacdata.c
View File
@@ -63,7 +63,7 @@ static int cdata_read_header(AVFormatContext *s, AVFormatParameters *ap)
};
sample_rate = avio_rb16(pb);
avio_skip(pb,
12
);
avio_skip(pb,
(avio_r8(pb) & 0x20) ? 15 : 11
);
st = av_new_stream(s, 0);
if (!st)
Write
Preview
Loading…
Cancel
Save