aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/ilo/ilo_video.c
diff options
context:
space:
mode:
authorChristian König <[email protected]>2013-07-15 03:48:04 -0600
committerChristian König <[email protected]>2013-08-19 10:21:15 +0200
commitf2f7064e560a83fc78d0e5b1d3a7d4aaac119a49 (patch)
treede24046b5c46851ca3ef8507fd396cc0fb69abad /src/gallium/drivers/ilo/ilo_video.c
parent8e423ab98403135140a093be3c66c88b9a36ad5c (diff)
vl: rename pipe_video_decoder to pipe_video_codec
Signed-off-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_video.c')
-rw-r--r--src/gallium/drivers/ilo/ilo_video.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/ilo/ilo_video.c b/src/gallium/drivers/ilo/ilo_video.c
index 95305db37b1..04be1da81a2 100644
--- a/src/gallium/drivers/ilo/ilo_video.c
+++ b/src/gallium/drivers/ilo/ilo_video.c
@@ -35,9 +35,9 @@
* Nothing here. We could make use of the video codec engine someday.
*/
-static struct pipe_video_decoder *
+static struct pipe_video_codec *
ilo_create_video_decoder(struct pipe_context *pipe,
- const struct pipe_video_decoder *templ)
+ const struct pipe_video_codec *templ)
{
return vl_create_decoder(pipe, templ);
}
@@ -55,6 +55,6 @@ ilo_create_video_buffer(struct pipe_context *pipe,
void
ilo_init_video_functions(struct ilo_context *ilo)
{
- ilo->base.create_video_decoder = ilo_create_video_decoder;
+ ilo->base.create_video_codec = ilo_create_video_decoder;
ilo->base.create_video_buffer = ilo_create_video_buffer;
}