diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-12-03 13:32:45 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-12-09 16:12:58 -0500 |
commit | 1fdf18f4b7e9f9983b6f07ef1033a51b289692f2 (patch) | |
tree | b309313a40bc0bfd82889fa6833fb9d51f5bc872 /libavformat/Makefile | |
parent | b2890f5ed684701ec15820b117738f6af0b7f334 (diff) | |
download | ffmpeg-1fdf18f4b7e9f9983b6f07ef1033a51b289692f2.tar.gz |
mov: add support for reading and writing the 'chan' tag
This implements reading the tag in the demuxer and adds support for writing it
in the muxer. Some example channel layout tables for muxing are included for
ac3, aac, and alac, but they are not utilized yet.
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index fccb5f342f..9d2e946b3c 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -132,9 +132,10 @@ OBJS-$(CONFIG_MLP_MUXER) += rawenc.o OBJS-$(CONFIG_MM_DEMUXER) += mm.o OBJS-$(CONFIG_MMF_DEMUXER) += mmf.o pcm.o OBJS-$(CONFIG_MMF_MUXER) += mmf.o riff.o -OBJS-$(CONFIG_MOV_DEMUXER) += mov.o riff.o isom.o +OBJS-$(CONFIG_MOV_DEMUXER) += mov.o riff.o isom.o mov_chan.o OBJS-$(CONFIG_MOV_MUXER) += movenc.o riff.o isom.o avc.o \ - movenchint.o rtpenc_chain.o + movenchint.o rtpenc_chain.o \ + mov_chan.o OBJS-$(CONFIG_MP2_MUXER) += mp3enc.o rawenc.o OBJS-$(CONFIG_MP3_DEMUXER) += mp3dec.o OBJS-$(CONFIG_MP3_MUXER) += mp3enc.o rawenc.o id3v2enc.o |