[FFmpeg-cvslog] r11761 - in trunk/libavcodec: h263dec.c mpegvideo.h
michael
subversion
Fri Feb 1 16:13:38 CET 2008
Author: michael
Date: Fri Feb 1 16:13:38 2008
New Revision: 11761
Log:
const
Modified:
trunk/libavcodec/h263dec.c
trunk/libavcodec/mpegvideo.h
Modified: trunk/libavcodec/h263dec.c
==============================================================================
--- trunk/libavcodec/h263dec.c (original)
+++ trunk/libavcodec/h263dec.c Fri Feb 1 16:13:38 2008
@@ -322,7 +322,7 @@ static int decode_slice(MpegEncContext *
int ff_h263_decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
- uint8_t *buf, int buf_size)
+ const uint8_t *buf, int buf_size)
{
MpegEncContext *s = avctx->priv_data;
int ret;
Modified: trunk/libavcodec/mpegvideo.h
==============================================================================
--- trunk/libavcodec/mpegvideo.h (original)
+++ trunk/libavcodec/mpegvideo.h Fri Feb 1 16:13:38 2008
@@ -817,7 +817,7 @@ int ff_h261_get_picture_format(int width
int ff_h263_decode_init(AVCodecContext *avctx);
int ff_h263_decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
- uint8_t *buf, int buf_size);
+ const uint8_t *buf, int buf_size);
int ff_h263_decode_end(AVCodecContext *avctx);
void h263_encode_mb(MpegEncContext *s,
DCTELEM block[6][64],
More information about the ffmpeg-cvslog
mailing list