summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorArpi <arpi@thot.banki.hu>2002-03-28 23:07:54 +0000
committerArpi <arpi@thot.banki.hu>2002-03-28 23:07:54 +0000
commit60e575acc86aa5f1cfd87598f21cdb7b920ab5d5 (patch)
tree3041e280859d8ef16d6512c00d4e2c57ae81b24e /libavcodec/avcodec.h
parent4d69fbc99ef807e278165c9ad09b6a38c2a20de4 (diff)
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
Originally committed as revision 366 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 6b60473466..8306ad9ba6 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -69,6 +69,7 @@ extern int motion_estimation_method;
#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 @@ typedef struct AVCodecContext {
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;