diff options
author | Michael Niedermayer | 2018-07-13 18:53:38 +0200 |
---|---|---|
committer | Michael Niedermayer | 2018-07-15 19:42:25 +0200 |
commit | 2e6ea3938669a5a0aa00a58ff83d4c0a1ae3b2a7 (patch) | |
tree | 6305db2df11b2cf81aaad48324d353e213bb6601 | |
parent | 9e6c8437761661441d836876934314cb2b8fafe7 (diff) |
avcodec/vp8_parser: Remove redundant output initialization
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/vp8_parser.c | 2 |
1 files changed, 0 insertions, 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; } |