summaryrefslogtreecommitdiffstats
path: root/ffplay.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-02-29 06:20:22 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-02-29 06:27:38 +0100
commitc2500635235d809e0c0ac526a7e13072ab7c8900 (patch)
tree623e25483adae3ba3992f50841babf2f190b8457 /ffplay.c
parent8534881a389044ec51adabcf979616b4875ac072 (diff)
downloadffmpeg-streaming-c2500635235d809e0c0ac526a7e13072ab7c8900.zip
ffmpeg-streaming-c2500635235d809e0c0ac526a7e13072ab7c8900.tar.gz
get_buffers: Check that pix_fmt is not NONE.
This is somewhat redundant as no decoder should call get_buffer() with such argument. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index 19c4308..93097e1 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1564,7 +1564,7 @@ static int input_get_buffer(AVCodecContext *codec, AVFrame *pic)
w = codec->width;
h = codec->height;
- if(av_image_check_size(w, h, 0, codec))
+ if(av_image_check_size(w, h, 0, codec) || codec->pix_fmt<0)
return -1;
avcodec_align_dimensions2(codec, &w, &h, stride);
OpenPOWER on IntegriCloud