aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2023-12-11 01:57:37 +0100
committerClément Bœsch <u@pkh.me>2024-01-10 14:08:00 +0100
commit9c7f6d89fdff7f9fc6f36f6f86b657092dafff92 (patch)
tree7411b1d8921cdbb7d73ff0b589fb187392c66c52
parent9258f4eaf9e8d8afbd98ae1e0c34a3bee8bec067 (diff)
downloadffmpeg-9c7f6d89fdff7f9fc6f36f6f86b657092dafff92.tar.gz
avcodec/proresenc_anatoliy: rename new_dc to dc
This makes the function closer to encode_dcs() in proresenc_kostya.
-rw-r--r--libavcodec/proresenc_anatoliy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c
index 0d1b84face..5a63620b18 100644
--- a/libavcodec/proresenc_anatoliy.c
+++ b/libavcodec/proresenc_anatoliy.c
@@ -272,7 +272,7 @@ static void encode_dcs(PutBitContext *pb, int16_t *blocks,
{
int prev_dc, codebook;
int i, sign, new_sign;
- int new_dc, delta, diff_sign, code;
+ int dc, delta, diff_sign, code;
prev_dc = (blocks[0] - 0x4000) / qmat[0];
codebook = TO_GOLOMB(prev_dc);
@@ -281,8 +281,8 @@ static void encode_dcs(PutBitContext *pb, int16_t *blocks,
codebook = 5; sign = 0;
for (i = 1; i < blocks_per_slice; i++, blocks += 64) {
- new_dc = (blocks[0] - 0x4000) / qmat[0];
- delta = new_dc - prev_dc;
+ dc = (blocks[0] - 0x4000) / qmat[0];
+ delta = dc - prev_dc;
new_sign = GET_SIGN(delta);
diff_sign = new_sign ^ sign;
code = TO_GOLOMB2(get_level(delta), diff_sign);
@@ -291,7 +291,7 @@ static void encode_dcs(PutBitContext *pb, int16_t *blocks,
codebook = FFMIN(code, 6);
sign = new_sign;
- prev_dc = new_dc;
+ prev_dc = dc;
}
}