comparison h263.c @ 6211:ed359f380aa7 libavcodec

Revert r11689 and r11690 (uninitalized warning fix) as its theoretically undefined in C.
author michael
date Thu, 31 Jan 2008 14:01:33 +0000
parents f78a5c3cbb7c
children 493dc59d469a
comparison
equal deleted inserted replaced
6210:d912f75d3b5d 6211:ed359f380aa7
4725 */ 4725 */
4726 static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block, 4726 static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block,
4727 int n, int coded, int intra, int rvlc) 4727 int n, int coded, int intra, int rvlc)
4728 { 4728 {
4729 int level, i, last, run; 4729 int level, i, last, run;
4730 int dc_pred_dir= dc_pred_dir; //weird init to prevent uninitalized warning 4730 int dc_pred_dir;
4731 RLTable * rl; 4731 RLTable * rl;
4732 RL_VLC_ELEM * rl_vlc; 4732 RL_VLC_ELEM * rl_vlc;
4733 const uint8_t * scan_table; 4733 const uint8_t * scan_table;
4734 int qmul, qadd; 4734 int qmul, qadd;
4735 4735