diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2011-09-26 13:19:05 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-09-26 13:51:29 +0200 |
commit | 4ca59d19485afce923c6f1d8ccef980011b76f50 (patch) | |
tree | bb21190089a9b8f4d4d0d900036b733acedda130 /libavformat/oggdec.h | |
parent | b15a9888a8f8e8cc9784ffd8d5d0307900fb78bb (diff) | |
download | ffmpeg-4ca59d19485afce923c6f1d8ccef980011b76f50.tar.gz |
oggdec: add support for Xiph's CELT codec
This patch also introduces CODEC_ID_CELT.
Signed-off-by: Nicolas George <nicolas.george@normalesup.org>
Signed-off-by: Diego Biurrun <diego@biurrun.de>
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 e7d1022734..184a628622 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; |