summaryrefslogtreecommitdiff
path: root/libavformat/matroska.c
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2012-07-04 16:36:56 +0200
committerNicolas George <nicolas.george@normalesup.org>2012-07-20 11:19:01 +0200
commit30549294ef0f796d48b1ffa482bd9315d4dbb83c (patch)
tree63d26b234058c56510c70fded173c82370a05f2f /libavformat/matroska.c
parenta6cf296bd90ae4a8097f1681f86bfa42b32fe074 (diff)
downloadffmpeg-30549294ef0f796d48b1ffa482bd9315d4dbb83c.tar.gz
matroska: add support for Opus.
Opus in Matroska is still a draft.
Diffstat (limited to 'libavformat/matroska.c')
-rw-r--r--libavformat/matroska.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/matroska.c b/libavformat/matroska.c
index 52481d7556..5e9a6cade3 100644
--- a/libavformat/matroska.c
+++ b/libavformat/matroska.c
@@ -31,6 +31,7 @@ const CodecTags ff_mkv_codec_tags[]={
{"A_MPEG/L2" , CODEC_ID_MP2},
{"A_MPEG/L1" , CODEC_ID_MP2},
{"A_MPEG/L3" , CODEC_ID_MP3},
+ {"A_OPUS", CODEC_ID_OPUS},
{"A_PCM/FLOAT/IEEE" , CODEC_ID_PCM_F32LE},
{"A_PCM/FLOAT/IEEE" , CODEC_ID_PCM_F64LE},
{"A_PCM/INT/BIG" , CODEC_ID_PCM_S16BE},