[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec h264.c,1.193,1.194
Loren Merritt CVS
lorenm
Sat Mar 4 04:57:35 CET 2006
Update of /cvsroot/ffmpeg/ffmpeg/libavcodec
In directory mail:/var2/tmp/cvs-serv25678
Modified Files:
h264.c
Log Message:
keyframe flag was wrong if SEIs followed the keyframe
Index: h264.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/h264.c,v
retrieving revision 1.193
retrieving revision 1.194
diff -u -d -r1.193 -r1.194
--- h264.c 25 Feb 2006 22:41:06 -0000 1.193
+++ h264.c 4 Mar 2006 03:57:33 -0000 1.194
@@ -7548,6 +7548,7 @@
av_log(h->s.avctx, AV_LOG_ERROR, "decode_slice_header error\n");
break;
}
+ s->current_picture_ptr->key_frame= (h->nal_unit_type == NAL_IDR_SLICE);
if(h->redundant_pic_count==0 && s->hurry_up < 5
&& (avctx->skip_frame < AVDISCARD_NONREF || h->nal_ref_idc)
&& (avctx->skip_frame < AVDISCARD_BIDIR || h->slice_type!=B_TYPE)
@@ -7617,7 +7618,6 @@
s->current_picture_ptr->qscale_type= FF_QSCALE_TYPE_H264;
s->current_picture_ptr->pict_type= s->pict_type;
- s->current_picture_ptr->key_frame= s->pict_type == I_TYPE && h->nal_unit_type == NAL_IDR_SLICE;
h->prev_frame_num_offset= h->frame_num_offset;
h->prev_frame_num= h->frame_num;
More information about the ffmpeg-cvslog
mailing list