comparison mpegvideo.h @ 288:f82cce6cb182 libavcodec

10l (motion_val was uninitilized) 20l (first frame of a gop could be a p-frame sometimes) add hq flag to MpegEncContext
author michaelni
date Sun, 24 Mar 2002 04:16:51 +0000
parents 91f7c38f5f37
children 2899263586cd
comparison
equal deleted inserted replaced
287:32a3dcce2e9b 288:f82cce6cb182
63 float qblur; /* amount of qscale smoothing over time (0.0-1.0) */ 63 float qblur; /* amount of qscale smoothing over time (0.0-1.0) */
64 int qmin; /* min qscale */ 64 int qmin; /* min qscale */
65 int qmax; /* max qscale */ 65 int qmax; /* max qscale */
66 int max_qdiff; /* max qscale difference between frames */ 66 int max_qdiff; /* max qscale difference between frames */
67 int encoding; /* true if we are encoding (vs decoding) */ 67 int encoding; /* true if we are encoding (vs decoding) */
68 int hq; /* set if CODEC_FLAG_HQ is used in AVCodecContext.flags */
68 /* the following fields are managed internally by the encoder */ 69 /* the following fields are managed internally by the encoder */
69 70
70 /* bit output */ 71 /* bit output */
71 PutBitContext pb; 72 PutBitContext pb;
72 73