[FFmpeg-cvslog] avcodec/proresenc_kostya: remove redundant codebook assignments

Clément Bœsch git at videolan.org
Wed Jan 10 15:21:47 EET 2024


ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Mon Dec 11 01:04:30 2023 +0100| [e940baa65bcbdf86466fd5a8c7504caa7c1a9ec1] | committer: Clément Bœsch

avcodec/proresenc_kostya: remove redundant codebook assignments

This is already assigned at declaration.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e940baa65bcbdf86466fd5a8c7504caa7c1a9ec1
---

 libavcodec/proresenc_kostya.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/libavcodec/proresenc_kostya.c b/libavcodec/proresenc_kostya.c
index ad82c9c355..2d5dee05e6 100644
--- a/libavcodec/proresenc_kostya.c
+++ b/libavcodec/proresenc_kostya.c
@@ -440,7 +440,6 @@ static void encode_dcs(PutBitContext *pb, int16_t *blocks,
     prev_dc = (blocks[0] - 0x4000) / scale;
     encode_vlc_codeword(pb, FIRST_DC_CB, MAKE_CODE(prev_dc));
     sign     = 0;
-    codebook = 3;
     blocks  += 64;
 
     for (i = 1; i < blocks_per_slice; i++, blocks += 64) {
@@ -675,7 +674,6 @@ static int estimate_dcs(int *error, int16_t *blocks, int blocks_per_slice,
     prev_dc  = (blocks[0] - 0x4000) / scale;
     bits     = estimate_vlc(FIRST_DC_CB, MAKE_CODE(prev_dc));
     sign     = 0;
-    codebook = 3;
     blocks  += 64;
     *error  += FFABS(blocks[0] - 0x4000) % scale;
 



More information about the ffmpeg-cvslog mailing list