From baf35bb4bc4fe7a2a4113c50989d11dd9ef81e76 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Tue, 22 Jan 2013 11:27:57 -0800 Subject: dsputil: remove one array dimension from avg_no_rnd_pixels_tab. --- libavcodec/sparc/dsputil_vis.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/sparc') diff --git a/libavcodec/sparc/dsputil_vis.c b/libavcodec/sparc/dsputil_vis.c index db2a6ae6ee..0822a5816b 100644 --- a/libavcodec/sparc/dsputil_vis.c +++ b/libavcodec/sparc/dsputil_vis.c @@ -3540,10 +3540,10 @@ void ff_dsputil_init_vis(DSPContext* c, AVCodecContext *avctx) c->put_no_rnd_pixels_tab[1][2] = MC_put_no_round_y_8_vis; c->put_no_rnd_pixels_tab[1][3] = MC_put_no_round_xy_8_vis; - c->avg_no_rnd_pixels_tab[0][0] = MC_avg_no_round_o_16_vis; - c->avg_no_rnd_pixels_tab[0][1] = MC_avg_no_round_x_16_vis; - c->avg_no_rnd_pixels_tab[0][2] = MC_avg_no_round_y_16_vis; - c->avg_no_rnd_pixels_tab[0][3] = MC_avg_no_round_xy_16_vis; + c->avg_no_rnd_pixels_tab[0] = MC_avg_no_round_o_16_vis; + c->avg_no_rnd_pixels_tab[1] = MC_avg_no_round_x_16_vis; + c->avg_no_rnd_pixels_tab[2] = MC_avg_no_round_y_16_vis; + c->avg_no_rnd_pixels_tab[3] = MC_avg_no_round_xy_16_vis; } } } -- cgit v1.2.1