summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-01-31 14:01:33 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-01-31 14:01:33 +0000
commit3485b9cdda2274b2a554b2f0d24db09a20bcb54b (patch)
treefce996dfc2a2f18bdef279eb5e2c70ae3fd436b6 /libavcodec/h263.c
parentfa7343eaf2cd954d224f7b861b006fbbf6f6cdd4 (diff)
Revert r11689 and r11690 (uninitalized warning fix) as its theoretically
undefined in C. Originally committed as revision 11694 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r--libavcodec/h263.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c
index d3510559e2..6262c94da0 100644
--- a/libavcodec/h263.c
+++ b/libavcodec/h263.c
@@ -4727,7 +4727,7 @@ static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block,
int n, int coded, int intra, int rvlc)
{
int level, i, last, run;
- int dc_pred_dir= dc_pred_dir; //weird init to prevent uninitalized warning
+ int dc_pred_dir;
RLTable * rl;
RL_VLC_ELEM * rl_vlc;
const uint8_t * scan_table;