summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-03-03 21:33:33 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-03-03 21:33:33 +0000
commit56c70e1d3a1cde2f7490780a4924e6b6e87e4c47 (patch)
tree764419ac9afd609732fb46fe200eebe8264feab9 /libavcodec/h264.c
parent6cb8b1c3646533e684312a4c65a05413d3cafa86 (diff)
check for no frame and prevent segfault
Originally committed as revision 8211 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 9c568c0033..10beead96a 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -8355,6 +8355,11 @@ static int decode_frame(AVCodecContext *avctx,
if(buf_index < 0)
return -1;
+ if(!(s->flags2 & CODEC_FLAG2_CHUNKS) && !s->current_picture_ptr){
+ av_log(avctx, AV_LOG_ERROR, "no frame!\n");
+ return -1;
+ }
+
if(!(s->flags2 & CODEC_FLAG2_CHUNKS) || (s->mb_y >= s->mb_height && s->mb_height)){
Picture *out = s->current_picture_ptr;
Picture *cur = s->current_picture_ptr;