comparison vp56.c @ 6297:1b91ce6c758c libavcodec

const
author michael
date Fri, 01 Feb 2008 16:16:40 +0000
parents 1643aa6ac147
children 48759bfbd073
comparison
equal deleted inserted replaced
6296:8624c08b6c54 6297:1b91ce6c758c
493 493
494 return 0; 494 return 0;
495 } 495 }
496 496
497 int vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size, 497 int vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
498 uint8_t *buf, int buf_size) 498 const uint8_t *buf, int buf_size)
499 { 499 {
500 vp56_context_t *s = avctx->priv_data; 500 vp56_context_t *s = avctx->priv_data;
501 AVFrame *const p = s->framep[VP56_FRAME_CURRENT]; 501 AVFrame *const p = s->framep[VP56_FRAME_CURRENT];
502 int is_alpha, alpha_offset; 502 int is_alpha, alpha_offset;
503 503