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/avcodec.h | |
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/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c34fcf17ba..513c88df32 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -191,6 +191,7 @@ enum CodecID { CODEC_ID_QDM2, CODEC_ID_COOK, CODEC_ID_TRUESPEECH, + CODEC_ID_TTA, CODEC_ID_OGGTHEORA= 0x16000, @@ -2154,6 +2155,7 @@ extern AVCodec mp3on4_decoder; extern AVCodec qdm2_decoder; extern AVCodec cook_decoder; extern AVCodec truespeech_decoder; +extern AVCodec tta_decoder; extern AVCodec mace3_decoder; extern AVCodec mace6_decoder; extern AVCodec huffyuv_decoder; |