diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2006-02-12 02:15:19 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2006-02-12 02:15:19 +0000 |
commit | a24c4a2ae44fb81175f6a3aa846820fb201b3135 (patch) | |
tree | 7b58fd473950cbefbf5d2b48fcf54171076bbeb0 /libavcodec/allcodecs.c | |
parent | 46ff904f3dab51c0c2ffb50046386e522210773a (diff) | |
download | ffmpeg-a24c4a2ae44fb81175f6a3aa846820fb201b3135.tar.gz |
tta decoder, tested with 44khz mono and stereo (for the latter use ffplay or change MAX_AUDIO_FRAME_SIZE)
Originally committed as revision 4996 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r-- | libavcodec/allcodecs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index 2b73d1b88c..e78312d24d 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -505,6 +505,9 @@ void avcodec_register_all(void) #ifdef CONFIG_TRUESPEECH_DECODER register_avcodec(&truespeech_decoder); #endif //CONFIG_TRUESPEECH_DECODER +#ifdef CONFIG_TTA_DECODER + register_avcodec(&tta_decoder); +#endif //CONFIG_TTA_DECODER #ifdef CONFIG_RAWVIDEO_DECODER register_avcodec(&rawvideo_decoder); #endif //CONFIG_RAWVIDEO_DECODER |