diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2011-04-15 19:18:04 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2011-04-19 15:49:32 +0200 |
commit | e61b83d29e1b273a7d4d1d982aac68cf26a0a3ee (patch) | |
tree | d346767d87c4d15e6bf00e25a6238e263386170e /libavformat/oggdec.h | |
parent | 484a3308903d3e9a01cbc0ba2504ef3f5850c076 (diff) | |
download | ffmpeg-e61b83d29e1b273a7d4d1d982aac68cf26a0a3ee.tar.gz |
Ogg: add support for Xiph's CELT (Opus) codec.
This patch also introduces CODEC_ID_CELT.
Signed-off-by: Nicolas George <nicolas.george@normalesup.org>
Diffstat (limited to 'libavformat/oggdec.h')
-rw-r--r-- | libavformat/oggdec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/oggdec.h b/libavformat/oggdec.h index 7d66cd5638..82efd97aec 100644 --- a/libavformat/oggdec.h +++ b/libavformat/oggdec.h @@ -98,6 +98,7 @@ struct ogg { #define OGG_FLAG_BOS 2 #define OGG_FLAG_EOS 4 +extern const struct ogg_codec ff_celt_codec; extern const struct ogg_codec ff_dirac_codec; extern const struct ogg_codec ff_flac_codec; extern const struct ogg_codec ff_ogm_audio_codec; |