Mercurial > libavcodec.hg
changeset 5402:20e5c861c096 libavcodec
remove wrong const qualifier
author | aurel |
---|---|
date | Wed, 25 Jul 2007 19:34:31 +0000 |
parents | cb5d5d2ee6fd |
children | 54800e80235a |
files | vp56.h |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/vp56.h Wed Jul 25 05:09:54 2007 +0000 +++ b/vp56.h Wed Jul 25 19:34:31 2007 +0000 @@ -49,7 +49,7 @@ 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 @@ */ 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;