Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2010-06-22 23:12:54 +0400
committerRonald S. Bultje <rsbultje@gmail.com>2010-06-22 23:12:54 +0400
commitcaaf098cec5fb1860de88f46cb6342b1c71b0994 (patch)
treeaf7d38d5a67be2fca436829b3fe926ea1b243fb6 /libavcodec/h264pred.h
parent45a1b86a0504c598b542b676f028e743bba7a2ba (diff)
Make "topright" argument to pred4x4() const.
Patch by David Conrad <lessen42 gmail com>. Originally committed as revision 23714 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264pred.h')
-rw-r--r--libavcodec/h264pred.h2
1 files changed, 1 insertions, 1 deletions
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);