aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/allcodecs.c
diff options
context:
space:
mode:
authorFrançois Revol <revol@free.fr>2002-11-02 10:39:22 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-11-02 10:39:22 +0000
commit3f95e8434b170ae91e3dc5397d9e88da6d5acba7 (patch)
treea7db4a7bbf07d078a5a6116f723f4c0eaff93eed /libavcodec/allcodecs.c
parent9ddd71fc6063b357344f81a0f704c1d04f584ada (diff)
downloadffmpeg-3f95e8434b170ae91e3dc5397d9e88da6d5acba7.tar.gz
added MACE (Macintosh Audio Compression/Expansion) 3:1 & 6:1 support
contribution by Laszlo Torok <torokl@alpha.dfmk.hu> 4CC 'MAC3' and 'MAC6' in Quicktime. It works for mono streams, needs to be fixed for stereo when I get my hands on a stereo sample :) patch by (François Revol <revol at free dot fr>) Originally committed as revision 1145 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r--libavcodec/allcodecs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c
index 6057c8f6bd..f07eff9739 100644
--- a/libavcodec/allcodecs.c
+++ b/libavcodec/allcodecs.c
@@ -76,6 +76,8 @@ void avcodec_register_all(void)
register_avcodec(&mp3_decoder);
register_avcodec(&wmav1_decoder);
register_avcodec(&wmav2_decoder);
+ register_avcodec(&mace3_decoder);
+ register_avcodec(&mace6_decoder);
#ifdef CONFIG_AC3
register_avcodec(&ac3_decoder);
#endif