diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-11-24 10:43:32 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-11-24 10:43:32 +0100 |
commit | 95903e3cfd2e922d7ba3d481812e8be1dbb7fd58 (patch) | |
tree | d821bf4310a2b11791c39a4a39ade0fa9b6b7c38 /libavformat/au.c | |
parent | df651cf42e0a55339f8f12bec18dd54239d5f224 (diff) | |
download | ffmpeg-95903e3cfd2e922d7ba3d481812e8be1dbb7fd58.tar.gz |
Support G.722 in Sun AU.
Diffstat (limited to 'libavformat/au.c')
-rw-r--r-- | libavformat/au.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/au.c b/libavformat/au.c index bd7838e447..d4d4ff3432 100644 --- a/libavformat/au.c +++ b/libavformat/au.c @@ -47,6 +47,7 @@ static const AVCodecTag codec_au_tags[] = { { AV_CODEC_ID_PCM_S32BE, 5 }, { AV_CODEC_ID_PCM_F32BE, 6 }, { AV_CODEC_ID_PCM_F64BE, 7 }, + { AV_CODEC_ID_ADPCM_G722, 24 }, { AV_CODEC_ID_PCM_ALAW, 27 }, { AV_CODEC_ID_NONE, 0 }, }; |