diff options
Diffstat (limited to 'src/gallium/drivers/ilo')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_video.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/gallium/drivers/ilo/ilo_video.c b/src/gallium/drivers/ilo/ilo_video.c index 6d3d0a1797a..95305db37b1 100644 --- a/src/gallium/drivers/ilo/ilo_video.c +++ b/src/gallium/drivers/ilo/ilo_video.c @@ -37,14 +37,9 @@ static struct pipe_video_decoder * ilo_create_video_decoder(struct pipe_context *pipe, - enum pipe_video_profile profile, - enum pipe_video_entrypoint entrypoint, - enum pipe_video_chroma_format chroma_format, - unsigned width, unsigned height, unsigned max_references, - bool expect_chunked_decode) + const struct pipe_video_decoder *templ) { - return vl_create_decoder(pipe, profile, entrypoint, chroma_format, - width, height, max_references, expect_chunked_decode); + return vl_create_decoder(pipe, templ); } static struct pipe_video_buffer * |