diff options
author | Andreas Hartmetz <[email protected]> | 2014-01-07 02:40:22 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-01-14 00:07:13 +0100 |
commit | 45578def716f17e4588c6567a5fb3b6dc9569aec (patch) | |
tree | f651438881252cedaf7635b8e5524718e3f8c5e6 /src/gallium/drivers/radeonsi/si_uvd.c | |
parent | 280c360c0287608227466c6f366606ef5bd62cfa (diff) |
radeonsi: Rename r600->si for functions in si_pipe.h.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_uvd.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_uvd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/radeonsi/si_uvd.c b/src/gallium/drivers/radeonsi/si_uvd.c index 397c697ae24..8d3dccadf94 100644 --- a/src/gallium/drivers/radeonsi/si_uvd.c +++ b/src/gallium/drivers/radeonsi/si_uvd.c @@ -51,8 +51,8 @@ /** * creates an video buffer with an UVD compatible memory layout */ -struct pipe_video_buffer *radeonsi_video_buffer_create(struct pipe_context *pipe, - const struct pipe_video_buffer *tmpl) +struct pipe_video_buffer *si_video_buffer_create(struct pipe_context *pipe, + const struct pipe_video_buffer *tmpl) { struct si_context *ctx = (struct si_context *)pipe; struct r600_texture *resources[VL_NUM_COMPONENTS] = {}; @@ -146,8 +146,8 @@ static struct radeon_winsys_cs_handle* radeonsi_uvd_set_dtb(struct ruvd_msg *msg /** * creates an UVD compatible decoder */ -struct pipe_video_codec *radeonsi_uvd_create_decoder(struct pipe_context *context, - const struct pipe_video_codec *templ) +struct pipe_video_codec *si_uvd_create_decoder(struct pipe_context *context, + const struct pipe_video_codec *templ) { return ruvd_create_decoder(context, templ, radeonsi_uvd_set_dtb); } |