Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-04-28 12:45:32 +0400
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-04-28 12:45:32 +0400
commit91b782720fd0df5571775b6591bc41797d6ecf78 (patch)
treee53a8bc0dd01508966e57082f1f9cc003ccbd069 /libavformat/cafdec.c
parent0665199e438fcdd2000717352fc665a8cf017f7c (diff)
Move channel chunk reading function to isom.c.
Move ff_read_chan_chunk() to isom.c and rename it as ff_mov_read_chan().
Diffstat (limited to 'libavformat/cafdec.c')
-rw-r--r--libavformat/cafdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/cafdec.c b/libavformat/cafdec.c
index 3cf4b6ca0c..ea9a3c17ae 100644
--- a/libavformat/cafdec.c
+++ b/libavformat/cafdec.c
@@ -260,7 +260,7 @@ static int read_header(AVFormatContext *s,
case MKBETAG('c','h','a','n'):
if (size < 12)
return AVERROR_INVALIDDATA;
- ff_read_chan_chunk(s, size, st->codec);
+ ff_mov_read_chan(s, size, st->codec);
break;
default: