diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-12-09 05:12:03 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-12-09 05:12:03 +0000 |
commit | be63e939873fc1865c763e598e2407f23ce67246 (patch) | |
tree | 15c00af92fcd8ca7c31bed2bb7a4c88abcd9dfee /src/xine-engine | |
parent | 17db1541ed0d981b41a62a4fef080cb188990d5c (diff) | |
download | xine-lib-be63e939873fc1865c763e598e2407f23ce67246.tar.gz xine-lib-be63e939873fc1865c763e598e2407f23ce67246.tar.bz2 |
Enable the WMV VC1 (ffmpeg) codec.
--HG--
extra : transplant_source : %15%CD%0B%2C%F2g%03%B9%25%D4%B2%8BQ%1F%EB%BB%8F%28%9B%C8
Diffstat (limited to 'src/xine-engine')
-rw-r--r-- | src/xine-engine/buffer.h | 1 | ||||
-rw-r--r-- | src/xine-engine/buffer_types.c | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index b08960e7d..35ab1e620 100644 --- a/src/xine-engine/buffer.h +++ b/src/xine-engine/buffer.h @@ -189,6 +189,7 @@ extern "C" { #define BUF_VIDEO_CAVS 0x02620000 #define BUF_VIDEO_VP6F 0x02630000 #define BUF_VIDEO_THEORA_RAW 0x02640000 +#define BUF_VIDEO_VC1 0x02650000 /* audio buffer types: (please keep in sync with buffer_types.c) */ diff --git a/src/xine-engine/buffer_types.c b/src/xine-engine/buffer_types.c index 129d8d194..ee50e5391 100644 --- a/src/xine-engine/buffer_types.c +++ b/src/xine-engine/buffer_types.c @@ -318,6 +318,16 @@ static const video_db_t video_db[] = { }, { { + ME_FOURCC('W','V','C','1'), + ME_FOURCC('W','M','V','A'), + ME_FOURCC('v','c','-','1'), + 0 + }, + BUF_VIDEO_VC1, + "Windows Media Video VC-1" +}, +{ + { ME_FOURCC('c','r','a','m'), ME_FOURCC('C','R','A','M'), ME_FOURCC('M','S','V','C'), |