diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-04-28 10:45:32 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-04-28 10:45:32 +0200 |
commit | 91b782720fd0df5571775b6591bc41797d6ecf78 (patch) | |
tree | e53a8bc0dd01508966e57082f1f9cc003ccbd069 /libavformat/cafdec.c | |
parent | 0665199e438fcdd2000717352fc665a8cf017f7c (diff) | |
download | ffmpeg-91b782720fd0df5571775b6591bc41797d6ecf78.tar.gz |
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.c | 2 |
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: |