diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-11-06 06:07:41 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-11-06 06:07:41 +0000 |
commit | 3f509ba1222e2a08249ad626bd8e4f8ad9007e63 (patch) | |
tree | e814438d48aeb039850f4911ace7100e2798d0bf | |
parent | 39ff2ee84d58fa27def7e5db450bbd7a0888f3ad (diff) | |
download | ffmpeg-3f509ba1222e2a08249ad626bd8e4f8ad9007e63.tar.gz |
WavPack support in Matroska
Originally committed as revision 6909 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/matroska.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/matroska.c b/libavformat/matroska.c index 30c616a408..a0993f2ff0 100644 --- a/libavformat/matroska.c +++ b/libavformat/matroska.c @@ -221,6 +221,7 @@ static CodecTags codec_tags[]={ {"A_VORBIS" , CODEC_ID_VORBIS}, {"A_AAC/MPEG2/" , CODEC_ID_AAC}, {"A_AAC/MPEG4/" , CODEC_ID_AAC}, + {"A_WAVPACK4" , CODEC_ID_WAVPACK}, {NULL , CODEC_ID_NONE} /* TODO: AC3-9/10 (?), Real, Musepack, Quicktime */ }; |