Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwm4 <nfxjfg@googlemail.com>2015-01-09 04:13:36 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-01-09 14:34:05 +0300
commitb88e80589bd11ef935a5e9dab53d4edb00de16e4 (patch)
tree01bd3e26c1b9e2045231dd5273ecc8bb87f241ea /libavcodec/vp9_parser.c
parentd1c6b7b2d1ef2fc0ada6bcb49c516e20e3627525 (diff)
vp9: fix parser return values in error case
The parser must always set the out_size and out_data pointers. The API seems to require it, and the common code in parser.c also relies on it. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vp9_parser.c')
-rw-r--r--libavcodec/vp9_parser.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vp9_parser.c b/libavcodec/vp9_parser.c
index af033c25e6..922f36f381 100644
--- a/libavcodec/vp9_parser.c
+++ b/libavcodec/vp9_parser.c
@@ -77,6 +77,8 @@ static int parse(AVCodecParserContext *ctx,
idx += a; \
if (sz > size) { \
s->n_frames = 0; \
+ *out_size = 0; \
+ *out_data = data; \
av_log(avctx, AV_LOG_ERROR, \
"Superframe packet size too big: %u > %d\n", \
sz, size); \