Browse code

lavf/matroska: Removing experimental suffix for Opus

Removing the /EXPERIMENTAL suffix for codec id field for Opus. Doing this
as the implementation of embedding Opus in Matroska is complete.

Signed-Off By: Vignesh Venkatasubramanian <vigneshv@google.com>

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Vignesh Venkatasubramanian authored on 2013/09/13 02:24:43
Showing 1 changed files
... ...
@@ -35,8 +35,8 @@ const CodecTags ff_mkv_codec_tags[]={
35 35
     {"A_MPEG/L2"        , AV_CODEC_ID_MP2},
36 36
     {"A_MPEG/L1"        , AV_CODEC_ID_MP2},
37 37
     {"A_MPEG/L3"        , AV_CODEC_ID_MP3},
38
-    {"A_OPUS/EXPERIMENTAL",AV_CODEC_ID_OPUS},
39 38
     {"A_OPUS",            AV_CODEC_ID_OPUS},
39
+    {"A_OPUS/EXPERIMENTAL",AV_CODEC_ID_OPUS},
40 40
     {"A_PCM/FLOAT/IEEE" , AV_CODEC_ID_PCM_F32LE},
41 41
     {"A_PCM/FLOAT/IEEE" , AV_CODEC_ID_PCM_F64LE},
42 42
     {"A_PCM/INT/BIG"    , AV_CODEC_ID_PCM_S16BE},