diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-12 19:40:29 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-12 19:40:29 +0200 |
commit | e458fd6cf9ca5f8f6876b96712a2c50532241cb1 (patch) | |
tree | e2b42ab8a759da4a0a23e82c53b0c442327cf596 /libavcodec/dv.c | |
parent | 805fbbefb3a8e438f3a734413f9e9e7ee12e09b2 (diff) | |
download | ffmpeg-e458fd6cf9ca5f8f6876b96712a2c50532241cb1.tar.gz |
libavcodec/dv.c: Fix duplicate words
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 2a06c541d6..5a62bf2295 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -551,7 +551,7 @@ static av_always_inline int dv_init_enc_block(EncBlockInfo* bi, uint8_t *data, i if (level + 15 > 30U) { bi->sign[i] = (level >> 31) & 1; - /* weight it and and shift down into range, adding for rounding */ + /* weight it and shift down into range, adding for rounding */ /* the extra division by a factor of 2^4 reverses the 8x expansion of the DCT AND the 2x doubling of the weights */ level = (FFABS(level) * weight[i] + (1 << (dv_weight_bits+3))) >> (dv_weight_bits+4); |