comparison mpegvideo.h @ 208:2eb04d6be309 libavcodec

(commit by michael) bye bye weird al rounding bug ;)
author arpi_esp
date Tue, 15 Jan 2002 22:22:41 +0000
parents 883f184537e6
children 0b234715e205
comparison
equal deleted inserted replaced
207:6954f2830e4a 208:2eb04d6be309
158 int rl_chroma_table_index; 158 int rl_chroma_table_index;
159 int dc_table_index; 159 int dc_table_index;
160 int use_skip_mb_code; 160 int use_skip_mb_code;
161 int slice_height; /* in macroblocks */ 161 int slice_height; /* in macroblocks */
162 int first_slice_line; 162 int first_slice_line;
163 int flipflop_rounding;
164 int bitrate;
163 /* decompression specific */ 165 /* decompression specific */
164 GetBitContext gb; 166 GetBitContext gb;
165 167
166 /* MPEG2 specific - I wish I had not to support this mess. */ 168 /* MPEG2 specific - I wish I had not to support this mess. */
167 int progressive_sequence; 169 int progressive_sequence;
282 void rv10_encode_picture_header(MpegEncContext *s, int picture_number); 284 void rv10_encode_picture_header(MpegEncContext *s, int picture_number);
283 int rv_decode_dc(MpegEncContext *s, int n); 285 int rv_decode_dc(MpegEncContext *s, int n);
284 286
285 /* msmpeg4.c */ 287 /* msmpeg4.c */
286 void msmpeg4_encode_picture_header(MpegEncContext * s, int picture_number); 288 void msmpeg4_encode_picture_header(MpegEncContext * s, int picture_number);
289 void msmpeg4_encode_ext_header(MpegEncContext * s);
287 void msmpeg4_encode_mb(MpegEncContext * s, 290 void msmpeg4_encode_mb(MpegEncContext * s,
288 DCTELEM block[6][64], 291 DCTELEM block[6][64],
289 int motion_x, int motion_y); 292 int motion_x, int motion_y);
290 void msmpeg4_dc_scale(MpegEncContext * s); 293 void msmpeg4_dc_scale(MpegEncContext * s);
291 int msmpeg4_decode_picture_header(MpegEncContext * s); 294 int msmpeg4_decode_picture_header(MpegEncContext * s);
295 int msmpeg4_decode_ext_header(MpegEncContext * s, int buf_size);
292 int msmpeg4_decode_mb(MpegEncContext *s, 296 int msmpeg4_decode_mb(MpegEncContext *s,
293 DCTELEM block[6][64]); 297 DCTELEM block[6][64]);
294 int msmpeg4_decode_init_vlc(MpegEncContext *s); 298 int msmpeg4_decode_init_vlc(MpegEncContext *s);
295 299
296 /* mjpegenc.c */ 300 /* mjpegenc.c */