summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorSamuel Pitoiset <samuel.pitoiset@gmail.com>2012-09-06 12:46:37 +0200
committerMartin Storsjö <martin@martin.st>2012-09-07 10:49:35 +0300
commit9afb7061f938831248942050cfdb449e014ed427 (patch)
tree0320384233a686f37adab9e5fd42dec763082a15 /libavformat/mov.c
parent91a84a5247857d18b211f45129cf39b6788f0022 (diff)
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/mov.c')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 99fd2af573..640377a134 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -583,7 +583,7 @@ static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
if (atom.size < 16)
return 0;
- ff_mov_read_chan(c->fc, st, atom.size - 4);
+ ff_mov_read_chan(c->fc, pb, st, atom.size - 4);
return 0;
}