diff options
author | Christian König <[email protected]> | 2015-12-16 14:19:41 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2016-01-12 13:28:42 +0100 |
commit | 6f898f740c4932f3d34f5f69d60b9b9b6b3a9327 (patch) | |
tree | fea5afea6c13a38942400e3f8fce62cae8dcfdb2 | |
parent | 5fdd4a5aef122a8aa1da91ac0555a817af0d1b06 (diff) |
vl: use preferred format for deinterlacing
Signed-off-by: Christian König <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
-rw-r--r-- | src/gallium/auxiliary/vl/vl_deint_filter.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/vl/vl_deint_filter.c b/src/gallium/auxiliary/vl/vl_deint_filter.c index f919867cc02..9e782e531bf 100644 --- a/src/gallium/auxiliary/vl/vl_deint_filter.c +++ b/src/gallium/auxiliary/vl/vl_deint_filter.c @@ -255,7 +255,13 @@ vl_deint_filter_init(struct vl_deint_filter *filter, struct pipe_context *pipe, /* TODO: handle other than 4:2:0 subsampling */ memset(&templ, 0, sizeof(templ)); - templ.buffer_format = PIPE_FORMAT_YV12; + templ.buffer_format = pipe->screen->get_video_param + ( + pipe->screen, + PIPE_VIDEO_PROFILE_UNKNOWN, + PIPE_VIDEO_ENTRYPOINT_UNKNOWN, + PIPE_VIDEO_CAP_PREFERED_FORMAT + ); templ.chroma_format = PIPE_VIDEO_CHROMA_FORMAT_420; templ.width = video_width; templ.height = video_height; |