This makes the function closer to encode_dcs() in proresenc_kostya.
---
libavcodec/proresenc_anatoliy.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c
index e79c465590..f8feff850f 100644
--- a/libavcodec/proresenc_anatoliy.c
+++ b/libavcodec/proresenc_anatoliy.c
@@ -285,9 +285,9 @@ static void encode_dc_coeffs(PutBitContext *pb, int16_t *in,
diff_sign = DIFF_SIGN(delta, sign);
code = TO_GOLOMB2(get_level(delta), diff_sign);
- encode_vlc_codeword(pb, ff_prores_dc_codebook[FFMIN(codebook, 6)],
code);
+ encode_vlc_codeword(pb, ff_prores_dc_codebook[codebook], code);
- codebook = code;
+ codebook = FFMIN(code, 6);
sign = delta >> 31;
prev_dc = new_dc;
}
--
2.43.0
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".