diff options
author | Christian König <[email protected]> | 2012-02-01 23:38:45 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2012-02-06 10:35:58 +0100 |
commit | f3f03c67e90f962f67e7b58b7c7baff3be251cb1 (patch) | |
tree | 2e641c2f21c8518277b69c05bc586c2811c0dc18 /src/gallium/drivers/softpipe | |
parent | 3841d3fd1358cd3ecbe71d173e52551420a07f4e (diff) |
vl: add interlacing capabilities
Let the driver control interlaced or progressive
format of video buffers.
Signed-off-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/drivers/softpipe')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_screen.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index 6cafeafbe19..6d61d003975 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -209,6 +209,12 @@ softpipe_get_video_param(struct pipe_screen *screen, return vl_video_buffer_max_size(screen); case PIPE_VIDEO_CAP_PREFERED_FORMAT: return PIPE_FORMAT_NV12; + case PIPE_VIDEO_CAP_PREFERS_INTERLACED: + return false; + case PIPE_VIDEO_CAP_SUPPORTS_INTERLACED: + return false; + case PIPE_VIDEO_CAP_SUPPORTS_PROGRESSIVE: + return true; default: return 0; } |