diff options
Diffstat (limited to 'libavcodec/wnv1.c')
-rw-r--r-- | libavcodec/wnv1.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/wnv1.c b/libavcodec/wnv1.c index 156a8a09a4..913b42a78f 100644 --- a/libavcodec/wnv1.c +++ b/libavcodec/wnv1.c @@ -52,13 +52,11 @@ static inline int wnv1_get_code(GetBitContext *gb, int shift, int base_value) return base_value + v * (1 << shift); } -static int decode_frame(AVCodecContext *avctx, - void *data, int *got_frame, - AVPacket *avpkt) +static int decode_frame(AVCodecContext *avctx, AVFrame *p, + int *got_frame, AVPacket *avpkt) { const uint8_t *buf = avpkt->data; int buf_size = avpkt->size; - AVFrame * const p = data; GetBitContext gb; unsigned char *Y,*U,*V; int i, j, ret, shift; |