diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-10-11 17:44:21 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-10-11 17:44:21 +0000 |
commit | f44ee2c34b33d9d15c8edd369ef01444fc1c81a9 (patch) | |
tree | 83d9475fd0d9768a1cebf6e50ae5025191a80f78 /libavcodec/avcodec.h | |
parent | a62a7323fab878f0623f5d4901e5e44989916a9c (diff) | |
download | ffmpeg-f44ee2c34b33d9d15c8edd369ef01444fc1c81a9.tar.gz |
theora decoding support (only keyframes for now, because by theora the frame isn't flipped so the motion vectors are getting screwed up)
Originally committed as revision 2359 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index b0b3bf551b..1f57584acd 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -61,6 +61,7 @@ enum CodecID { CODEC_ID_H264, CODEC_ID_INDEO3, CODEC_ID_VP3, + CODEC_ID_THEORA, CODEC_ID_AAC, CODEC_ID_MPEG4AAC, CODEC_ID_ASV1, @@ -1433,6 +1434,7 @@ extern AVCodec cyuv_decoder; extern AVCodec h264_decoder; extern AVCodec indeo3_decoder; extern AVCodec vp3_decoder; +extern AVCodec theora_decoder; extern AVCodec amr_nb_decoder; extern AVCodec amr_nb_encoder; extern AVCodec amr_wb_encoder; |