comparison mpegvideo.h @ 3781:8e79b099d354 libavcodec

dc_val should be signed
author mru
date Wed, 27 Sep 2006 22:13:44 +0000
parents 1843a85123b7
children 616a81d04758
comparison
equal deleted inserted replaced
3780:6741c0e88310 3781:8e79b099d354
342 Picture *last_picture_ptr; ///< pointer to the previous picture. 342 Picture *last_picture_ptr; ///< pointer to the previous picture.
343 Picture *next_picture_ptr; ///< pointer to the next picture (for bidir pred) 343 Picture *next_picture_ptr; ///< pointer to the next picture (for bidir pred)
344 Picture *current_picture_ptr; ///< pointer to the current picture 344 Picture *current_picture_ptr; ///< pointer to the current picture
345 uint8_t *visualization_buffer[3]; //< temporary buffer vor MV visualization 345 uint8_t *visualization_buffer[3]; //< temporary buffer vor MV visualization
346 int last_dc[3]; ///< last DC values for MPEG1 346 int last_dc[3]; ///< last DC values for MPEG1
347 uint16_t *dc_val_base; 347 int16_t *dc_val_base;
348 uint16_t *dc_val[3]; ///< used for mpeg4 DC prediction, all 3 arrays must be continuous 348 int16_t *dc_val[3]; ///< used for mpeg4 DC prediction, all 3 arrays must be continuous
349 int16_t dc_cache[4*5]; 349 int16_t dc_cache[4*5];
350 int y_dc_scale, c_dc_scale; 350 int y_dc_scale, c_dc_scale;
351 const uint8_t *y_dc_scale_table; ///< qscale -> y_dc_scale table 351 const uint8_t *y_dc_scale_table; ///< qscale -> y_dc_scale table
352 const uint8_t *c_dc_scale_table; ///< qscale -> c_dc_scale table 352 const uint8_t *c_dc_scale_table; ///< qscale -> c_dc_scale table
353 const uint8_t *chroma_qscale_table; ///< qscale -> chroma_qscale (h263) 353 const uint8_t *chroma_qscale_table; ///< qscale -> chroma_qscale (h263)