diff options
author | Christian König <[email protected]> | 2013-07-15 03:48:04 -0600 |
---|---|---|
committer | Christian König <[email protected]> | 2013-08-19 10:21:15 +0200 |
commit | f2f7064e560a83fc78d0e5b1d3a7d4aaac119a49 (patch) | |
tree | de24046b5c46851ca3ef8507fd396cc0fb69abad /src/gallium/auxiliary/vl/vl_mpeg12_decoder.h | |
parent | 8e423ab98403135140a093be3c66c88b9a36ad5c (diff) |
vl: rename pipe_video_decoder to pipe_video_codec
Signed-off-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_mpeg12_decoder.h')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_mpeg12_decoder.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h b/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h index dd284ee6531..c7fe5e6b5d3 100644 --- a/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h +++ b/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h @@ -28,7 +28,7 @@ #ifndef vl_mpeg12_decoder_h #define vl_mpeg12_decoder_h -#include "pipe/p_video_decoder.h" +#include "pipe/p_video_codec.h" #include "vl_mpeg12_bitstream.h" #include "vl_zscan.h" @@ -43,7 +43,7 @@ struct pipe_context; struct vl_mpeg12_decoder { - struct pipe_video_decoder base; + struct pipe_video_codec base; unsigned chroma_width, chroma_height; @@ -102,8 +102,8 @@ struct vl_mpeg12_buffer /** * creates a shader based mpeg12 decoder */ -struct pipe_video_decoder * +struct pipe_video_codec * vl_create_mpeg12_decoder(struct pipe_context *pipe, - const struct pipe_video_decoder *templat); + const struct pipe_video_codec *templat); #endif /* vl_mpeg12_decoder_h */ |