comparison mpegvideo.h @ 64:5aa6292a1660 libavcodec

win32 fixes
author glantau
date Mon, 13 Aug 2001 21:48:05 +0000
parents d99e8a2351f4
children 79be2c581c01
comparison
equal deleted inserted replaced
63:8e2d8dbf89a5 64:5aa6292a1660
123 void *opaque; /* private data for the user */ 123 void *opaque; /* private data for the user */
124 124
125 /* bit rate control */ 125 /* bit rate control */
126 int I_frame_bits; /* wanted number of bits per I frame */ 126 int I_frame_bits; /* wanted number of bits per I frame */
127 int P_frame_bits; /* same for P frame */ 127 int P_frame_bits; /* same for P frame */
128 long long wanted_bits; 128 INT64 wanted_bits;
129 long long total_bits; 129 INT64 total_bits;
130 130
131 /* mpeg4 specific */ 131 /* mpeg4 specific */
132 int time_increment_bits; 132 int time_increment_bits;
133 int shape;
134 int vol_sprite_usage;
135 int quant_precision;
133 136
134 /* RV10 specific */ 137 /* RV10 specific */
135 int rv10_version; /* RV10 version: 0 or 3 */ 138 int rv10_version; /* RV10 version: 0 or 3 */
136 int rv10_first_dc_coded[3]; 139 int rv10_first_dc_coded[3];
137 140