mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 05:50:43 +00:00
const
Originally committed as revision 11716 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f64bbca55d
commit
ebc0790441
@ -44,12 +44,13 @@ typedef enum {
|
||||
|
||||
static int
|
||||
avs_decode_frame(AVCodecContext * avctx,
|
||||
void *data, int *data_size, uint8_t * buf, int buf_size)
|
||||
void *data, int *data_size, const uint8_t * buf, int buf_size)
|
||||
{
|
||||
avs_context_t *const avs = avctx->priv_data;
|
||||
AVFrame *picture = data;
|
||||
AVFrame *const p = (AVFrame *) & avs->picture;
|
||||
uint8_t *table, *vect, *out;
|
||||
const uint8_t *table, *vect;
|
||||
uint8_t *out;
|
||||
int i, j, x, y, stride, vect_w = 3, vect_h = 3;
|
||||
int sub_type;
|
||||
avs_block_type_t type;
|
||||
|
Loading…
Reference in New Issue
Block a user