@ -62,9 +62,9 @@ static int decode_frame(AVCodecContext *avctx,
void * data , int * got_frame ,
void * data , int * got_frame ,
AVPacket * avpkt )
AVPacket * avpkt )
{
{
WNV1Context * const l = avctx - > priv_data ;
const uint8_t * buf = avpkt - > data ;
const uint8_t * buf = avpkt - > data ;
int buf_size = avpkt - > size ;
int buf_size = avpkt - > size ;
WNV1Context * const l = avctx - > priv_data ;
AVFrame * const p = & l - > pic ;
AVFrame * const p = & l - > pic ;
unsigned char * Y , * U , * V ;
unsigned char * Y , * U , * V ;
int i , j , ret ;
int i , j , ret ;
@ -136,7 +136,8 @@ static int decode_frame(AVCodecContext *avctx,
return buf_size ;
return buf_size ;
}
}
static av_cold int decode_init ( AVCodecContext * avctx ) {
static av_cold int decode_init ( AVCodecContext * avctx )
{
WNV1Context * const l = avctx - > priv_data ;
WNV1Context * const l = avctx - > priv_data ;
static VLC_TYPE code_table [ 1 < < CODE_VLC_BITS ] [ 2 ] ;
static VLC_TYPE code_table [ 1 < < CODE_VLC_BITS ] [ 2 ] ;
@ -153,7 +154,8 @@ static av_cold int decode_init(AVCodecContext *avctx){
return 0 ;
return 0 ;
}
}
static av_cold int decode_end ( AVCodecContext * avctx ) {
static av_cold int decode_end ( AVCodecContext * avctx )
{
WNV1Context * const l = avctx - > priv_data ;
WNV1Context * const l = avctx - > priv_data ;
AVFrame * pic = & l - > pic ;
AVFrame * pic = & l - > pic ;