[FFmpeg-cvslog] r15980 - in trunk/libavcodec: rv34.c rv34.h
kostya
subversion
Tue Dec 2 18:35:40 CET 2008
Author: kostya
Date: Tue Dec 2 18:35:38 2008
New Revision: 15980
Log:
Update ff_rv34_decode_frame() arguments definition
Modified:
trunk/libavcodec/rv34.c
trunk/libavcodec/rv34.h
Modified: trunk/libavcodec/rv34.c
==============================================================================
--- trunk/libavcodec/rv34.c (original)
+++ trunk/libavcodec/rv34.c Tue Dec 2 18:35:38 2008
@@ -1351,7 +1351,7 @@ static int get_slice_offset(AVCodecConte
int ff_rv34_decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
- uint8_t *buf, int buf_size)
+ const uint8_t *buf, int buf_size)
{
RV34DecContext *r = avctx->priv_data;
MpegEncContext *s = &r->s;
Modified: trunk/libavcodec/rv34.h
==============================================================================
--- trunk/libavcodec/rv34.h (original)
+++ trunk/libavcodec/rv34.h Tue Dec 2 18:35:38 2008
@@ -123,7 +123,7 @@ typedef struct RV34DecContext{
*/
int ff_rv34_get_start_offset(GetBitContext *gb, int blocks);
int ff_rv34_decode_init(AVCodecContext *avctx);
-int ff_rv34_decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size);
+int ff_rv34_decode_frame(AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size);
int ff_rv34_decode_end(AVCodecContext *avctx);
#endif /* AVCODEC_RV34_H */
More information about the ffmpeg-cvslog
mailing list