summaryrefslogtreecommitdiff
path: root/libavcodec/smc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-01 14:10:56 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-01 14:10:56 +0000
commit2b57b46313b3524f80e3b6f6cc6e6cf31dd95866 (patch)
tree8ed8f87164744bf11f8d297b269c532fcc44b777 /libavcodec/smc.c
parent3d37b11f92f05b72a4f9fd024f891ec65ad68169 (diff)
const
Originally committed as revision 11743 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/smc.c')
-rw-r--r--libavcodec/smc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/smc.c b/libavcodec/smc.c
index 78f130cf3a..f181e0c4ca 100644
--- a/libavcodec/smc.c
+++ b/libavcodec/smc.c
@@ -48,7 +48,7 @@ typedef struct SmcContext {
DSPContext dsp;
AVFrame frame;
- unsigned char *buf;
+ const unsigned char *buf;
int size;
/* SMC color tables */
@@ -443,7 +443,7 @@ static int smc_decode_init(AVCodecContext *avctx)
static int smc_decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
- uint8_t *buf, int buf_size)
+ const uint8_t *buf, int buf_size)
{
SmcContext *s = avctx->priv_data;