diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-06-24 11:38:18 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-07-20 11:16:52 +0200 |
commit | e62fd6619f7aa91956a1b4ccfa7b0b8d7bc4ba90 (patch) | |
tree | 80b27c5230cc2883efea21b7c3cc8ba48354eed6 /libavcodec | |
parent | bf8ce5a5c382e85f6e7c0bb9d5e698a4c929b0b9 (diff) | |
download | ffmpeg-e62fd6619f7aa91956a1b4ccfa7b0b8d7bc4ba90.tar.gz |
oggdec: add support for Opus codec.
This patch also introduces CODEC_ID_OPUS.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 3c180407a4..6711b78d3d 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -420,6 +420,7 @@ enum CodecID { CODEC_ID_SONIC = MKBETAG('S','O','N','C'), CODEC_ID_SONIC_LS = MKBETAG('S','O','N','L'), CODEC_ID_PAF_AUDIO = MKBETAG('P','A','F','A'), + CODEC_ID_OPUS = MKBETAG('O','P','U','S'), /* subtitle codecs */ CODEC_ID_FIRST_SUBTITLE = 0x17000, ///< A dummy ID pointing at the start of subtitle codecs. |