diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-05-17 01:47:12 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-05-17 01:47:12 +0200 |
commit | 6d721f714ee61d6e244b980113aa24d5afcbfee0 (patch) | |
tree | 1bf68ef3c6ecb7011698999d3b820875a0d08d96 /libavformat/isom.h | |
parent | d2549ba9df1a1aac8c0ae19bfca2c81e508ba02e (diff) | |
download | ffmpeg-6d721f714ee61d6e244b980113aa24d5afcbfee0.tar.gz |
Fix ff_mov_write_chan() so it can be used by other muxers.
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index 6649d85739..2b64486129 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -157,7 +157,6 @@ enum CodecID ff_mov_get_lpcm_codec_id(int bps, int flags); int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries); void ff_mov_read_chan(AVFormatContext *s, int64_t size, AVCodecContext *codec); -void ff_mov_write_chan(AVFormatContext *s, int64_t channel_layout, - const char *chunk_type); +void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout); #endif /* AVFORMAT_ISOM_H */ |