diff options
author | Christophe Thommeret <hftom@free.fr> | 2008-11-07 17:05:55 +0000 |
---|---|---|
committer | Christophe Thommeret <hftom@free.fr> | 2008-11-07 17:05:55 +0000 |
commit | 3186621e53a1c78ea093cf6ae9672cc7166b6ac7 (patch) | |
tree | d61324b969d8d60b8a7bc212f4f1fdfc7d7cd1d4 | |
parent | 87028c80aa04784912f62ca21dad138da2c6ab1a (diff) | |
download | xine-lib-3186621e53a1c78ea093cf6ae9672cc7166b6ac7.tar.gz xine-lib-3186621e53a1c78ea093cf6ae9672cc7166b6ac7.tar.bz2 |
voraw minor fix
let raw video out plugin handle cropping.
--HG--
extra : transplant_source : %F3l%EFUI%28%2C%A0%0C%3E%AD%EA%EC%80%D1%9A%C0/%20%E5
-rw-r--r-- | src/video_out/video_out_raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/video_out_raw.c b/src/video_out/video_out_raw.c index 45cfc1eda..0d4bf445a 100644 --- a/src/video_out/video_out_raw.c +++ b/src/video_out/video_out_raw.c @@ -473,7 +473,7 @@ static int raw_gui_data_exchange (vo_driver_t *this_gen, int data_type, void *da static uint32_t raw_get_capabilities (vo_driver_t *this_gen) { - uint32_t capabilities = VO_CAP_YV12 | VO_CAP_YUY2; + uint32_t capabilities = VO_CAP_YV12 | VO_CAP_YUY2 | VO_CAP_CROP; return capabilities; } |