diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-07-16 14:08:24 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-07-16 14:08:24 +0100 |
commit | f1382ea01b368dc1d8044b368f602aad87f6468e (patch) | |
tree | a9d12b0b8dfe052d17c142fe5e8eefe415b40043 /src/combined/ffmpeg/ff_video_decoder.c | |
parent | 2dc2dea3f814ef273456136083fa726dce23e24b (diff) | |
download | xine-lib-f1382ea01b368dc1d8044b368f602aad87f6468e.tar.gz xine-lib-f1382ea01b368dc1d8044b368f602aad87f6468e.tar.bz2 |
Add support for the Snow video codec.
Diffstat (limited to 'src/combined/ffmpeg/ff_video_decoder.c')
-rw-r--r-- | src/combined/ffmpeg/ff_video_decoder.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/combined/ffmpeg/ff_video_decoder.c b/src/combined/ffmpeg/ff_video_decoder.c index 3ea08417e..ac101d77e 100644 --- a/src/combined/ffmpeg/ff_video_decoder.c +++ b/src/combined/ffmpeg/ff_video_decoder.c @@ -321,6 +321,7 @@ static const ff_codec_t ff_video_lookup[] = { {BUF_VIDEO_CAVS, CODEC_ID_CAVS, "Chinese AVS (ffmpeg)"}, {BUF_VIDEO_VMNC, CODEC_ID_VMNC, "VMware Screen Codec (ffmpeg)"}, {BUF_VIDEO_THEORA_RAW, CODEC_ID_THEORA, "Theora (ffmpeg)"}, + {BUF_VIDEO_SNOW, CODEC_ID_SNOW, "Snow (ffmpeg)"}, }; static const char *const skip_loop_filter_enum_names[] = { @@ -1892,6 +1893,9 @@ static uint32_t supported_video_types[] = { #ifdef CONFIG_VMNC_DECODER BUF_VIDEO_VMNC, #endif + #ifdef CONFIG_SNOW_DECODER + BUF_VIDEO_SNOW, + #endif BUF_VIDEO_THEORA_RAW, 0 }; |