diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-07-25 19:34:31 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-07-25 19:34:31 +0000 |
commit | 977f6a9049c59995a76ebd15cdd572b4d79c3b51 (patch) | |
tree | d91c8aae64ae955eb7b51d02e37b035ee2e9fd57 /libavcodec/vp56.h | |
parent | 868e43d952490c424876088a6db5bfa8ed169f6f (diff) | |
download | ffmpeg-977f6a9049c59995a76ebd15cdd572b4d79c3b51.tar.gz |
remove wrong const qualifier
Originally committed as revision 9795 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp56.h')
-rw-r--r-- | libavcodec/vp56.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index 624363e9f7..8c85e01995 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -49,7 +49,7 @@ typedef int (*vp56_parse_header_t)(vp56_context_t *s, uint8_t *buf, typedef struct { int high; int bits; - const uint8_t *buffer; + uint8_t *buffer; unsigned long code_word; } vp56_range_coder_t; @@ -165,7 +165,7 @@ int vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size, */ static inline void vp56_init_range_decoder(vp56_range_coder_t *c, - const uint8_t *buf, int buf_size) + uint8_t *buf, int buf_size) { c->high = 255; c->bits = 8; |