summaryrefslogtreecommitdiff
path: root/libavcodec/snow.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-09-22 18:06:56 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-09-22 18:06:56 +0200
commit3a7f9db180d97bd0b9f096a725a96e76c709b42e (patch)
tree4cefc1ee3dbd2439b35047d05563c2d4558cbe37 /libavcodec/snow.h
parent3c4fc6a78251970bb0565913645054e562987f77 (diff)
downloadffmpeg-3a7f9db180d97bd0b9f096a725a96e76c709b42e.tar.gz
avcodec/snow: Make block argumrnt of ff_snow_pred_block() const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/snow.h')
-rw-r--r--libavcodec/snow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/snow.h b/libavcodec/snow.h
index b6a8bf4d7f..6a3e763a4a 100644
--- a/libavcodec/snow.h
+++ b/libavcodec/snow.h
@@ -231,7 +231,7 @@ void ff_snow_reset_contexts(SnowContext *s);
int ff_snow_alloc_blocks(SnowContext *s);
int ff_snow_frame_start(SnowContext *s);
void ff_snow_pred_block(SnowContext *s, uint8_t *dst, uint8_t *tmp, ptrdiff_t stride,
- int sx, int sy, int b_w, int b_h, BlockNode *block,
+ int sx, int sy, int b_w, int b_h, const BlockNode *block,
int plane_index, int w, int h);
int ff_snow_get_buffer(SnowContext *s, AVFrame *frame);
/* common inline functions */