diff options
author | Samuel Pitoiset <samuel.pitoiset@gmail.com> | 2012-09-06 12:46:37 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-09-07 10:49:35 +0300 |
commit | 9afb7061f938831248942050cfdb449e014ed427 (patch) | |
tree | 0320384233a686f37adab9e5fd42dec763082a15 /libavformat/cafdec.c | |
parent | 91a84a5247857d18b211f45129cf39b6788f0022 (diff) | |
download | ffmpeg-9afb7061f938831248942050cfdb449e014ed427.tar.gz |
mov_chan: Pass a separate AVIOContext for reading
This fixes crashes when called from rtpdec_qt, where
AVFormatContext->pb is null, a crash present since 3bab7cd128.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/cafdec.c')
-rw-r--r-- | libavformat/cafdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/cafdec.c b/libavformat/cafdec.c index 2b1744da03..b3cbb39a4c 100644 --- a/libavformat/cafdec.c +++ b/libavformat/cafdec.c @@ -268,7 +268,7 @@ static int read_header(AVFormatContext *s) break; case MKBETAG('c','h','a','n'): - if ((ret = ff_mov_read_chan(s, st, size)) < 0) + if ((ret = ff_mov_read_chan(s, s->pb, st, size)) < 0) return ret; break; |