summaryrefslogtreecommitdiff
path: root/src/combined/ffmpeg/ff_video_decoder.c
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2008-07-16 14:08:24 +0100
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2008-07-16 14:08:24 +0100
commitf1382ea01b368dc1d8044b368f602aad87f6468e (patch)
treea9d12b0b8dfe052d17c142fe5e8eefe415b40043 /src/combined/ffmpeg/ff_video_decoder.c
parent2dc2dea3f814ef273456136083fa726dce23e24b (diff)
downloadxine-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.c4
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
};