From 2e6ea3938669a5a0aa00a58ff83d4c0a1ae3b2a7 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 13 Jul 2018 18:53:38 +0200 Subject: [PATCH] avcodec/vp8_parser: Remove redundant output initialization Signed-off-by: Michael Niedermayer --- libavcodec/vp8_parser.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/vp8_parser.c b/libavcodec/vp8_parser.c index e2d91b271f..7ce35e7535 100644 --- a/libavcodec/vp8_parser.c +++ b/libavcodec/vp8_parser.c @@ -70,8 +70,6 @@ static int parse(AVCodecParserContext *s, s->coded_height = FFALIGN(height, 16); } - *poutbuf = buf; - *poutbuf_size = buf_size; return buf_size; }