aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2023-12-11 02:29:36 +0100
committerClément Bœsch <u@pkh.me>2024-01-10 14:08:00 +0100
commitcc2206d1422d2cc9cdac90461075b320f90c5217 (patch)
treea6319a16db395ac4f0b20807bd67d4bebd7c39dd /libavcodec
parent8fb2e96d7e61891b415b63dcbaaa77f6fdc00f4b (diff)
downloadffmpeg-cc2206d1422d2cc9cdac90461075b320f90c5217.tar.gz
avcodec/proresenc_anatoliy: make a few cosmetics in encode_acs()
This makes the function pretty much identical to the function of the same name in proresenc_kostya.
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/proresenc_anatoliy.c24
1 files changed, 10 insertions, 14 deletions
diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c
index c0e8e69cf7..6be6a98089 100644
--- a/libavcodec/proresenc_anatoliy.c
+++ b/libavcodec/proresenc_anatoliy.c
@@ -286,32 +286,28 @@ static void encode_acs(PutBitContext *pb, int16_t *blocks,
int blocks_per_slice,
int *qmat, const uint8_t *scan)
{
- int idx;
+ int idx, i;
int prev_run = 4;
int prev_level = 2;
- int max_coeffs;
- int run = 0, level, code, i;
+ int run = 0, level;
+ int max_coeffs, abs_level;
max_coeffs = blocks_per_slice << 6;
for (i = 1; i < 64; i++) {
for (idx = scan[i]; idx < max_coeffs; idx += 64) {
- int val = blocks[idx] / qmat[scan[i]];
- if (val) {
+ level = blocks[idx] / qmat[scan[i]];
+ if (level) {
+ abs_level = FFABS(level);
encode_vlc_codeword(pb, ff_prores_run_to_cb[prev_run], run);
-
- level = FFABS(val);
- code = level - 1;
-
- encode_vlc_codeword(pb, ff_prores_level_to_cb[prev_level], code);
-
- put_sbits(pb, 1, GET_SIGN(val));
+ encode_vlc_codeword(pb, ff_prores_level_to_cb[prev_level], abs_level - 1);
+ put_sbits(pb, 1, GET_SIGN(level));
prev_run = FFMIN(run, 15);
- prev_level = FFMIN(level, 9);
+ prev_level = FFMIN(abs_level, 9);
run = 0;
} else {
- ++run;
+ run++;
}
}
}