mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-17 20:17:55 +02:00
remove wrong const qualifier
Originally committed as revision 9795 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
868e43d952
commit
977f6a9049
@ -49,7 +49,7 @@ typedef int (*vp56_parse_header_t)(vp56_context_t *s, uint8_t *buf,
|
|||||||
typedef struct {
|
typedef struct {
|
||||||
int high;
|
int high;
|
||||||
int bits;
|
int bits;
|
||||||
const uint8_t *buffer;
|
uint8_t *buffer;
|
||||||
unsigned long code_word;
|
unsigned long code_word;
|
||||||
} vp56_range_coder_t;
|
} 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,
|
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->high = 255;
|
||||||
c->bits = 8;
|
c->bits = 8;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user