changeset 2488:8dd4672b9f74 libavcodec

make keyframe default for AVFrames
author michael
date Tue, 01 Feb 2005 18:36:51 +0000
parents b09bc77eb2fb
children 2e5ae040e92b
files utils.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/utils.c	Tue Feb 01 15:13:27 2005 +0000
+++ b/utils.c	Tue Feb 01 18:36:51 2005 +0000
@@ -483,6 +483,7 @@
     memset(pic, 0, sizeof(AVFrame));
 
     pic->pts= AV_NOPTS_VALUE;
+    pic->key_frame= 1;
 }
 
 /**