From caaf098cec5fb1860de88f46cb6342b1c71b0994 Mon Sep 17 00:00:00 2001 From: David Conrad Date: Tue, 22 Jun 2010 19:12:54 +0000 Subject: Make "topright" argument to pred4x4() const. Patch by David Conrad . Originally committed as revision 23714 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264pred.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/h264pred.h') diff --git a/libavcodec/h264pred.h b/libavcodec/h264pred.h index c52aeaa257..933045c092 100644 --- a/libavcodec/h264pred.h +++ b/libavcodec/h264pred.h @@ -72,7 +72,7 @@ * Context for storing H.264 prediction functions */ typedef struct H264PredContext{ - void (*pred4x4 [9+3+3])(uint8_t *src, uint8_t *topright, int stride);//FIXME move to dsp? + void (*pred4x4 [9+3+3])(uint8_t *src, const uint8_t *topright, int stride);//FIXME move to dsp? void (*pred8x8l [9+3])(uint8_t *src, int topleft, int topright, int stride); void (*pred8x8 [4+3+4])(uint8_t *src, int stride); void (*pred16x16[4+3])(uint8_t *src, int stride); -- cgit v1.2.3