summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Balling Sørensen <tball@tball-laptop.(none)>2010-09-27 22:45:05 +0200
committerThomas Balling Sørensen <tball@tball-laptop.(none)>2010-09-27 22:45:05 +0200
commit8291db1cdb9d8e8d02a9c1a7ce34e6a23b8238ff (patch)
treeda7ef035a3299655d1573f483690df3b89696448
parenta90bdd09b6b342c3ff8d2c80480805f9614fabb3 (diff)
vl: Renamed function to appropriate name.
-rw-r--r--src/gallium/state_trackers/vdpau/decode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/vdpau/decode.c b/src/gallium/state_trackers/vdpau/decode.c
index ec3995b98db..e03bc35ed68 100644
--- a/src/gallium/state_trackers/vdpau/decode.c
+++ b/src/gallium/state_trackers/vdpau/decode.c
@@ -166,7 +166,7 @@ vlVdpCreateSurfaceTarget (vlVdpDecoder *vldecoder,
}
static void
-vlVdpMacroBlocksToPipe(struct pipe_screen *screen,
+vlVdpBitstreamToMacroblocks(struct pipe_screen *screen,
VdpBitstreamBuffer const *bitstream_buffers,
unsigned int num_macroblocks,
struct pipe_mpeg12_macroblock *pipe_macroblocks)
@@ -221,7 +221,7 @@ vlVdpDecoderRenderMpeg2 (vlVdpDecoder *vldecoder,
num_macroblocks = bitstream_buffer_count;
struct pipe_mpeg12_macroblock pipe_macroblocks[num_macroblocks];
- vlVdpMacroBlocksToPipe(vpipe->screen, bitstream_buffers,
+ vlVdpBitstreamToMacroblocks(vpipe->screen, bitstream_buffers,
num_macroblocks, pipe_macroblocks);
vpipe->set_decode_target(vpipe,t_surf);