diff avcodec.h @ 298:e20de99b6295 libavcodec

using Juanjo's way to pass forced type - especially as I_TYPE/P_TYPE defines aren't exported in the public interface, and the flagged method matches the way as qscale forcing work
author arpi_esp
date Thu, 28 Mar 2002 23:07:54 +0000
parents a1234c032636
children 764aeec1320e
line wrap: on
line diff
--- a/avcodec.h	Thu Mar 28 22:50:22 2002 +0000
+++ b/avcodec.h	Thu Mar 28 23:07:54 2002 +0000
@@ -69,6 +69,7 @@
 #define CODEC_FLAG_B      0x0008 /* use B frames */
 #define CODEC_FLAG_QPEL   0x0010 /* use qpel MC */
 #define CODEC_FLAG_GMC    0x0020 /* use GMC */
+#define CODEC_FLAG_TYPE   0x0040 /* fixed I/P frame type, from avctx->key_frame */
 
 /* codec capabilities */
 
@@ -121,8 +122,6 @@
     int qmax;         /* max qscale */
     int max_qdiff;    /* max qscale difference between frames */
     
-    int force_type;   /* 0= no force, otherwise I_TYPE, P_TYPE, ... */
-
     struct AVCodec *codec;
     void *priv_data;