mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-20 07:48:15 +02:00
remove unused variables
Originally committed as revision 4738 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
8d1018bfec
commit
7e491fa5f9
@ -28,7 +28,7 @@ static void dct_unquantize_h263_intra_axp(MpegEncContext *s, DCTELEM *block,
|
|||||||
uint64_t qmul, qadd;
|
uint64_t qmul, qadd;
|
||||||
uint64_t correction;
|
uint64_t correction;
|
||||||
DCTELEM *orig_block = block;
|
DCTELEM *orig_block = block;
|
||||||
DCTELEM block0;
|
DCTELEM block0; /* might not be used uninitialized */
|
||||||
|
|
||||||
qadd = WORD_VEC((qscale - 1) | 1);
|
qadd = WORD_VEC((qscale - 1) | 1);
|
||||||
qmul = qscale << 1;
|
qmul = qscale << 1;
|
||||||
@ -92,8 +92,6 @@ static void dct_unquantize_h263_inter_axp(MpegEncContext *s, DCTELEM *block,
|
|||||||
int i, n_coeffs;
|
int i, n_coeffs;
|
||||||
uint64_t qmul, qadd;
|
uint64_t qmul, qadd;
|
||||||
uint64_t correction;
|
uint64_t correction;
|
||||||
DCTELEM *orig_block = block;
|
|
||||||
DCTELEM block0;
|
|
||||||
|
|
||||||
qadd = WORD_VEC((qscale - 1) | 1);
|
qadd = WORD_VEC((qscale - 1) | 1);
|
||||||
qmul = qscale << 1;
|
qmul = qscale << 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user