diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-12-02 17:35:38 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-12-02 17:35:38 +0000 |
commit | a1c1c7801918c46da5525cfddb99f3467c522b02 (patch) | |
tree | cec6ebae921bedcf5b9571ded19d0c69a6c27a13 /libavcodec/rv34.h | |
parent | 207625ee610e6438264e2bc9bbeaf8dd1d4548ba (diff) | |
download | ffmpeg-a1c1c7801918c46da5525cfddb99f3467c522b02.tar.gz |
Update ff_rv34_decode_frame() arguments definition
Originally committed as revision 15980 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv34.h')
-rw-r--r-- | libavcodec/rv34.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv34.h b/libavcodec/rv34.h index fc3642d883..65dbb8a708 100644 --- a/libavcodec/rv34.h +++ b/libavcodec/rv34.h @@ -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 */ |