diff options
author | Martin Storsjö <martin@martin.st> | 2013-09-16 20:32:35 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-09-17 11:33:38 +0300 |
commit | a92538b7c0defc86c55fb91f55dfa36aad192673 (patch) | |
tree | 6c528ae39695de42d5c603a39ce3b23ea4ba0c45 /libavcodec/ivi_common.c | |
parent | 7f8d41eb097e8d4223c9caf97dd332a2fdb29d52 (diff) | |
download | ffmpeg-a92538b7c0defc86c55fb91f55dfa36aad192673.tar.gz |
ivi_common: Make sure color planes have been initialized
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: libav-stable@libav.org
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/ivi_common.c')
-rw-r--r-- | libavcodec/ivi_common.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/ivi_common.c b/libavcodec/ivi_common.c index 2207fe1643..7ca53b7b0d 100644 --- a/libavcodec/ivi_common.c +++ b/libavcodec/ivi_common.c @@ -970,6 +970,11 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, return AVERROR_PATCHWELCOME; } + if (!ctx->planes[0].bands) { + av_log(avctx, AV_LOG_ERROR, "Color planes not initialized yet\n"); + return AVERROR_INVALIDDATA; + } + ctx->switch_buffers(ctx); //{ START_TIMER; |