* [FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack
@ 2024-06-05 12:24 Andreas Rheinhardt
2024-06-05 12:25 ` [FFmpeg-devel] [PATCH 2/2] avcodec/dnxhdenc: Simplify padding Andreas Rheinhardt
2024-06-08 19:45 ` [FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack Andreas Rheinhardt
0 siblings, 2 replies; 6+ messages in thread
From: Andreas Rheinhardt @ 2024-06-05 12:24 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
libavcodec/dnxhdenc.c | 33 +++++++++++++++++----------------
1 file changed, 17 insertions(+), 16 deletions(-)
diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c
index 0cb25d7714..4760a2932c 100644
--- a/libavcodec/dnxhdenc.c
+++ b/libavcodec/dnxhdenc.c
@@ -559,7 +559,7 @@ static int dnxhd_write_header(AVCodecContext *avctx, uint8_t *buf)
return 0;
}
-static av_always_inline void dnxhd_encode_dc(DNXHDEncContext *ctx, int diff)
+static av_always_inline void dnxhd_encode_dc(PutBitContext *pb, DNXHDEncContext *ctx, int diff)
{
int nbits;
if (diff < 0) {
@@ -568,19 +568,19 @@ static av_always_inline void dnxhd_encode_dc(DNXHDEncContext *ctx, int diff)
} else {
nbits = av_log2_16bit(2 * diff);
}
- put_bits(&ctx->m.pb, ctx->cid_table->dc_bits[nbits] + nbits,
+ put_bits(pb, ctx->cid_table->dc_bits[nbits] + nbits,
(ctx->cid_table->dc_codes[nbits] << nbits) +
av_mod_uintp2(diff, nbits));
}
static av_always_inline
-void dnxhd_encode_block(DNXHDEncContext *ctx, int16_t *block,
- int last_index, int n)
+void dnxhd_encode_block(PutBitContext *pb, DNXHDEncContext *ctx,
+ int16_t *block, int last_index, int n)
{
int last_non_zero = 0;
int slevel, i, j;
- dnxhd_encode_dc(ctx, block[0] - ctx->m.last_dc[n]);
+ dnxhd_encode_dc(pb, ctx, block[0] - ctx->m.last_dc[n]);
ctx->m.last_dc[n] = block[0];
for (i = 1; i <= last_index; i++) {
@@ -589,14 +589,14 @@ void dnxhd_encode_block(DNXHDEncContext *ctx, int16_t *block,
if (slevel) {
int run_level = i - last_non_zero - 1;
int rlevel = slevel * (1 << 1) | !!run_level;
- put_bits(&ctx->m.pb, ctx->vlc_bits[rlevel], ctx->vlc_codes[rlevel]);
+ put_bits(pb, ctx->vlc_bits[rlevel], ctx->vlc_codes[rlevel]);
if (run_level)
- put_bits(&ctx->m.pb, ctx->run_bits[run_level],
+ put_bits(pb, ctx->run_bits[run_level],
ctx->run_codes[run_level]);
last_non_zero = i;
}
}
- put_bits(&ctx->m.pb, ctx->vlc_bits[0], ctx->vlc_codes[0]); // EOB
+ put_bits(pb, ctx->vlc_bits[0], ctx->vlc_codes[0]); // EOB
}
static av_always_inline
@@ -879,9 +879,10 @@ static int dnxhd_encode_thread(AVCodecContext *avctx, void *arg,
int jobnr, int threadnr)
{
DNXHDEncContext *ctx = avctx->priv_data;
+ PutBitContext pb0, *const pb = &pb0;
int mb_y = jobnr, mb_x;
ctx = ctx->thread[threadnr];
- init_put_bits(&ctx->m.pb, (uint8_t *)arg + ctx->data_offset + ctx->slice_offs[jobnr],
+ init_put_bits(pb, (uint8_t *)arg + ctx->data_offset + ctx->slice_offs[jobnr],
ctx->slice_size[jobnr]);
ctx->m.last_dc[0] =
@@ -892,8 +893,8 @@ static int dnxhd_encode_thread(AVCodecContext *avctx, void *arg,
int qscale = ctx->mb_qscale[mb];
int i;
- put_bits(&ctx->m.pb, 11, qscale);
- put_bits(&ctx->m.pb, 1, avctx->pix_fmt == AV_PIX_FMT_YUV444P10);
+ put_bits(pb, 11, qscale);
+ put_bits(pb, 1, avctx->pix_fmt == AV_PIX_FMT_YUV444P10);
dnxhd_get_blocks(ctx, mb_x, mb_y);
@@ -904,13 +905,13 @@ static int dnxhd_encode_thread(AVCodecContext *avctx, void *arg,
ctx->is_444 ? (((i >> 1) % 3) < 1 ? 0 : 4): 4 & (2*i),
qscale, &overflow);
- dnxhd_encode_block(ctx, block, last_index, n);
+ dnxhd_encode_block(pb, ctx, block, last_index, n);
}
}
- if (put_bits_count(&ctx->m.pb) & 31)
- put_bits(&ctx->m.pb, 32 - (put_bits_count(&ctx->m.pb) & 31), 0);
- flush_put_bits(&ctx->m.pb);
- memset(put_bits_ptr(&ctx->m.pb), 0, put_bytes_left(&ctx->m.pb, 0));
+ if (put_bits_count(pb) & 31)
+ put_bits(pb, 32 - (put_bits_count(pb) & 31), 0);
+ flush_put_bits(pb);
+ memset(put_bits_ptr(pb), 0, put_bytes_left(pb, 0));
return 0;
}
--
2.40.1
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 6+ messages in thread
* [FFmpeg-devel] [PATCH 2/2] avcodec/dnxhdenc: Simplify padding
2024-06-05 12:24 [FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack Andreas Rheinhardt
@ 2024-06-05 12:25 ` Andreas Rheinhardt
2024-06-08 19:45 ` [FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack Andreas Rheinhardt
1 sibling, 0 replies; 6+ messages in thread
From: Andreas Rheinhardt @ 2024-06-05 12:25 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Andreas Rheinhardt
It is unnecessary to first pad to 32bits; the memset later
will pad everything will with zeroes anyway.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
libavcodec/dnxhdenc.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c
index 4760a2932c..028604a6e5 100644
--- a/libavcodec/dnxhdenc.c
+++ b/libavcodec/dnxhdenc.c
@@ -908,8 +908,6 @@ static int dnxhd_encode_thread(AVCodecContext *avctx, void *arg,
dnxhd_encode_block(pb, ctx, block, last_index, n);
}
}
- if (put_bits_count(pb) & 31)
- put_bits(pb, 32 - (put_bits_count(pb) & 31), 0);
flush_put_bits(pb);
memset(put_bits_ptr(pb), 0, put_bytes_left(pb, 0));
return 0;
--
2.40.1
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack
2024-06-05 12:24 [FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack Andreas Rheinhardt
2024-06-05 12:25 ` [FFmpeg-devel] [PATCH 2/2] avcodec/dnxhdenc: Simplify padding Andreas Rheinhardt
@ 2024-06-08 19:45 ` Andreas Rheinhardt
2024-06-08 19:51 ` Vittorio Giovara
1 sibling, 1 reply; 6+ messages in thread
From: Andreas Rheinhardt @ 2024-06-08 19:45 UTC (permalink / raw)
To: ffmpeg-devel
Andreas Rheinhardt:
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
> libavcodec/dnxhdenc.c | 33 +++++++++++++++++----------------
> 1 file changed, 17 insertions(+), 16 deletions(-)
>
> diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c
> index 0cb25d7714..4760a2932c 100644
> --- a/libavcodec/dnxhdenc.c
> +++ b/libavcodec/dnxhdenc.c
> @@ -559,7 +559,7 @@ static int dnxhd_write_header(AVCodecContext *avctx, uint8_t *buf)
> return 0;
> }
>
> -static av_always_inline void dnxhd_encode_dc(DNXHDEncContext *ctx, int diff)
> +static av_always_inline void dnxhd_encode_dc(PutBitContext *pb, DNXHDEncContext *ctx, int diff)
> {
> int nbits;
> if (diff < 0) {
> @@ -568,19 +568,19 @@ static av_always_inline void dnxhd_encode_dc(DNXHDEncContext *ctx, int diff)
> } else {
> nbits = av_log2_16bit(2 * diff);
> }
> - put_bits(&ctx->m.pb, ctx->cid_table->dc_bits[nbits] + nbits,
> + put_bits(pb, ctx->cid_table->dc_bits[nbits] + nbits,
> (ctx->cid_table->dc_codes[nbits] << nbits) +
> av_mod_uintp2(diff, nbits));
> }
>
> static av_always_inline
> -void dnxhd_encode_block(DNXHDEncContext *ctx, int16_t *block,
> - int last_index, int n)
> +void dnxhd_encode_block(PutBitContext *pb, DNXHDEncContext *ctx,
> + int16_t *block, int last_index, int n)
> {
> int last_non_zero = 0;
> int slevel, i, j;
>
> - dnxhd_encode_dc(ctx, block[0] - ctx->m.last_dc[n]);
> + dnxhd_encode_dc(pb, ctx, block[0] - ctx->m.last_dc[n]);
> ctx->m.last_dc[n] = block[0];
>
> for (i = 1; i <= last_index; i++) {
> @@ -589,14 +589,14 @@ void dnxhd_encode_block(DNXHDEncContext *ctx, int16_t *block,
> if (slevel) {
> int run_level = i - last_non_zero - 1;
> int rlevel = slevel * (1 << 1) | !!run_level;
> - put_bits(&ctx->m.pb, ctx->vlc_bits[rlevel], ctx->vlc_codes[rlevel]);
> + put_bits(pb, ctx->vlc_bits[rlevel], ctx->vlc_codes[rlevel]);
> if (run_level)
> - put_bits(&ctx->m.pb, ctx->run_bits[run_level],
> + put_bits(pb, ctx->run_bits[run_level],
> ctx->run_codes[run_level]);
> last_non_zero = i;
> }
> }
> - put_bits(&ctx->m.pb, ctx->vlc_bits[0], ctx->vlc_codes[0]); // EOB
> + put_bits(pb, ctx->vlc_bits[0], ctx->vlc_codes[0]); // EOB
> }
>
> static av_always_inline
> @@ -879,9 +879,10 @@ static int dnxhd_encode_thread(AVCodecContext *avctx, void *arg,
> int jobnr, int threadnr)
> {
> DNXHDEncContext *ctx = avctx->priv_data;
> + PutBitContext pb0, *const pb = &pb0;
> int mb_y = jobnr, mb_x;
> ctx = ctx->thread[threadnr];
> - init_put_bits(&ctx->m.pb, (uint8_t *)arg + ctx->data_offset + ctx->slice_offs[jobnr],
> + init_put_bits(pb, (uint8_t *)arg + ctx->data_offset + ctx->slice_offs[jobnr],
> ctx->slice_size[jobnr]);
>
> ctx->m.last_dc[0] =
> @@ -892,8 +893,8 @@ static int dnxhd_encode_thread(AVCodecContext *avctx, void *arg,
> int qscale = ctx->mb_qscale[mb];
> int i;
>
> - put_bits(&ctx->m.pb, 11, qscale);
> - put_bits(&ctx->m.pb, 1, avctx->pix_fmt == AV_PIX_FMT_YUV444P10);
> + put_bits(pb, 11, qscale);
> + put_bits(pb, 1, avctx->pix_fmt == AV_PIX_FMT_YUV444P10);
>
> dnxhd_get_blocks(ctx, mb_x, mb_y);
>
> @@ -904,13 +905,13 @@ static int dnxhd_encode_thread(AVCodecContext *avctx, void *arg,
> ctx->is_444 ? (((i >> 1) % 3) < 1 ? 0 : 4): 4 & (2*i),
> qscale, &overflow);
>
> - dnxhd_encode_block(ctx, block, last_index, n);
> + dnxhd_encode_block(pb, ctx, block, last_index, n);
> }
> }
> - if (put_bits_count(&ctx->m.pb) & 31)
> - put_bits(&ctx->m.pb, 32 - (put_bits_count(&ctx->m.pb) & 31), 0);
> - flush_put_bits(&ctx->m.pb);
> - memset(put_bits_ptr(&ctx->m.pb), 0, put_bytes_left(&ctx->m.pb, 0));
> + if (put_bits_count(pb) & 31)
> + put_bits(pb, 32 - (put_bits_count(pb) & 31), 0);
> + flush_put_bits(pb);
> + memset(put_bits_ptr(pb), 0, put_bytes_left(pb, 0));
> return 0;
> }
>
Will apply this patchset tomorrow unless there are objections.
- Andreas
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack
2024-06-08 19:45 ` [FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack Andreas Rheinhardt
@ 2024-06-08 19:51 ` Vittorio Giovara
2024-06-08 19:58 ` Andreas Rheinhardt
0 siblings, 1 reply; 6+ messages in thread
From: Vittorio Giovara @ 2024-06-08 19:51 UTC (permalink / raw)
To: FFmpeg development discussions and patches
On Sat, Jun 8, 2024 at 9:45 PM Andreas Rheinhardt <
andreas.rheinhardt@outlook.com> wrote:
> Andreas Rheinhardt:
> > Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> > ---
> > libavcodec/dnxhdenc.c | 33 +++++++++++++++++----------------
> > 1 file changed, 17 insertions(+), 16 deletions(-)
> >
> > diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c
> > index 0cb25d7714..4760a2932c 100644
> > --- a/libavcodec/dnxhdenc.c
> > +++ b/libavcodec/dnxhdenc.c
> > @@ -559,7 +559,7 @@ static int dnxhd_write_header(AVCodecContext *avctx,
> uint8_t *buf)
> > return 0;
> > }
> >
> > -static av_always_inline void dnxhd_encode_dc(DNXHDEncContext *ctx, int
> diff)
> > +static av_always_inline void dnxhd_encode_dc(PutBitContext *pb,
> DNXHDEncContext *ctx, int diff)
> > {
> > int nbits;
> > if (diff < 0) {
> > @@ -568,19 +568,19 @@ static av_always_inline void
> dnxhd_encode_dc(DNXHDEncContext *ctx, int diff)
> > } else {
> > nbits = av_log2_16bit(2 * diff);
> > }
> > - put_bits(&ctx->m.pb, ctx->cid_table->dc_bits[nbits] + nbits,
> > + put_bits(pb, ctx->cid_table->dc_bits[nbits] + nbits,
> > (ctx->cid_table->dc_codes[nbits] << nbits) +
> > av_mod_uintp2(diff, nbits));
> > }
> >
> > static av_always_inline
> > -void dnxhd_encode_block(DNXHDEncContext *ctx, int16_t *block,
> > - int last_index, int n)
> > +void dnxhd_encode_block(PutBitContext *pb, DNXHDEncContext *ctx,
> > + int16_t *block, int last_index, int n)
> > {
> > int last_non_zero = 0;
> > int slevel, i, j;
> >
> > - dnxhd_encode_dc(ctx, block[0] - ctx->m.last_dc[n]);
> > + dnxhd_encode_dc(pb, ctx, block[0] - ctx->m.last_dc[n]);
> > ctx->m.last_dc[n] = block[0];
> >
> > for (i = 1; i <= last_index; i++) {
> > @@ -589,14 +589,14 @@ void dnxhd_encode_block(DNXHDEncContext *ctx,
> int16_t *block,
> > if (slevel) {
> > int run_level = i - last_non_zero - 1;
> > int rlevel = slevel * (1 << 1) | !!run_level;
> > - put_bits(&ctx->m.pb, ctx->vlc_bits[rlevel],
> ctx->vlc_codes[rlevel]);
> > + put_bits(pb, ctx->vlc_bits[rlevel], ctx->vlc_codes[rlevel]);
> > if (run_level)
> > - put_bits(&ctx->m.pb, ctx->run_bits[run_level],
> > + put_bits(pb, ctx->run_bits[run_level],
> > ctx->run_codes[run_level]);
> > last_non_zero = i;
> > }
> > }
> > - put_bits(&ctx->m.pb, ctx->vlc_bits[0], ctx->vlc_codes[0]); // EOB
> > + put_bits(pb, ctx->vlc_bits[0], ctx->vlc_codes[0]); // EOB
> > }
> >
> > static av_always_inline
> > @@ -879,9 +879,10 @@ static int dnxhd_encode_thread(AVCodecContext
> *avctx, void *arg,
> > int jobnr, int threadnr)
> > {
> > DNXHDEncContext *ctx = avctx->priv_data;
> > + PutBitContext pb0, *const pb = &pb0;
> > int mb_y = jobnr, mb_x;
> > ctx = ctx->thread[threadnr];
> > - init_put_bits(&ctx->m.pb, (uint8_t *)arg + ctx->data_offset +
> ctx->slice_offs[jobnr],
> > + init_put_bits(pb, (uint8_t *)arg + ctx->data_offset +
> ctx->slice_offs[jobnr],
> > ctx->slice_size[jobnr]);
> >
> > ctx->m.last_dc[0] =
> > @@ -892,8 +893,8 @@ static int dnxhd_encode_thread(AVCodecContext
> *avctx, void *arg,
> > int qscale = ctx->mb_qscale[mb];
> > int i;
> >
> > - put_bits(&ctx->m.pb, 11, qscale);
> > - put_bits(&ctx->m.pb, 1, avctx->pix_fmt == AV_PIX_FMT_YUV444P10);
> > + put_bits(pb, 11, qscale);
> > + put_bits(pb, 1, avctx->pix_fmt == AV_PIX_FMT_YUV444P10);
> >
> > dnxhd_get_blocks(ctx, mb_x, mb_y);
> >
> > @@ -904,13 +905,13 @@ static int dnxhd_encode_thread(AVCodecContext
> *avctx, void *arg,
> > ctx->is_444 ? (((i >>
> 1) % 3) < 1 ? 0 : 4): 4 & (2*i),
> > qscale, &overflow);
> >
> > - dnxhd_encode_block(ctx, block, last_index, n);
> > + dnxhd_encode_block(pb, ctx, block, last_index, n);
> > }
> > }
> > - if (put_bits_count(&ctx->m.pb) & 31)
> > - put_bits(&ctx->m.pb, 32 - (put_bits_count(&ctx->m.pb) & 31), 0);
> > - flush_put_bits(&ctx->m.pb);
> > - memset(put_bits_ptr(&ctx->m.pb), 0, put_bytes_left(&ctx->m.pb, 0));
> > + if (put_bits_count(pb) & 31)
> > + put_bits(pb, 32 - (put_bits_count(pb) & 31), 0);
> > + flush_put_bits(pb);
> > + memset(put_bits_ptr(pb), 0, put_bytes_left(pb, 0));
> > return 0;
> > }
> >
>
> Will apply this patchset tomorrow unless there are objections.
>
No objections, but what is the rationale here? Just reducing variables
scope?
--
Vittorio
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack
2024-06-08 19:51 ` Vittorio Giovara
@ 2024-06-08 19:58 ` Andreas Rheinhardt
2024-06-09 13:16 ` Vittorio Giovara
0 siblings, 1 reply; 6+ messages in thread
From: Andreas Rheinhardt @ 2024-06-08 19:58 UTC (permalink / raw)
To: ffmpeg-devel
Vittorio Giovara:
> On Sat, Jun 8, 2024 at 9:45 PM Andreas Rheinhardt <
> andreas.rheinhardt@outlook.com> wrote:
>
>> Andreas Rheinhardt:
>>> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
>>> ---
>>> libavcodec/dnxhdenc.c | 33 +++++++++++++++++----------------
>>> 1 file changed, 17 insertions(+), 16 deletions(-)
>>>
>>> diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c
>>> index 0cb25d7714..4760a2932c 100644
>>> --- a/libavcodec/dnxhdenc.c
>>> +++ b/libavcodec/dnxhdenc.c
>>> @@ -559,7 +559,7 @@ static int dnxhd_write_header(AVCodecContext *avctx,
>> uint8_t *buf)
>>> return 0;
>>> }
>>>
>>> -static av_always_inline void dnxhd_encode_dc(DNXHDEncContext *ctx, int
>> diff)
>>> +static av_always_inline void dnxhd_encode_dc(PutBitContext *pb,
>> DNXHDEncContext *ctx, int diff)
>>> {
>>> int nbits;
>>> if (diff < 0) {
>>> @@ -568,19 +568,19 @@ static av_always_inline void
>> dnxhd_encode_dc(DNXHDEncContext *ctx, int diff)
>>> } else {
>>> nbits = av_log2_16bit(2 * diff);
>>> }
>>> - put_bits(&ctx->m.pb, ctx->cid_table->dc_bits[nbits] + nbits,
>>> + put_bits(pb, ctx->cid_table->dc_bits[nbits] + nbits,
>>> (ctx->cid_table->dc_codes[nbits] << nbits) +
>>> av_mod_uintp2(diff, nbits));
>>> }
>>>
>>> static av_always_inline
>>> -void dnxhd_encode_block(DNXHDEncContext *ctx, int16_t *block,
>>> - int last_index, int n)
>>> +void dnxhd_encode_block(PutBitContext *pb, DNXHDEncContext *ctx,
>>> + int16_t *block, int last_index, int n)
>>> {
>>> int last_non_zero = 0;
>>> int slevel, i, j;
>>>
>>> - dnxhd_encode_dc(ctx, block[0] - ctx->m.last_dc[n]);
>>> + dnxhd_encode_dc(pb, ctx, block[0] - ctx->m.last_dc[n]);
>>> ctx->m.last_dc[n] = block[0];
>>>
>>> for (i = 1; i <= last_index; i++) {
>>> @@ -589,14 +589,14 @@ void dnxhd_encode_block(DNXHDEncContext *ctx,
>> int16_t *block,
>>> if (slevel) {
>>> int run_level = i - last_non_zero - 1;
>>> int rlevel = slevel * (1 << 1) | !!run_level;
>>> - put_bits(&ctx->m.pb, ctx->vlc_bits[rlevel],
>> ctx->vlc_codes[rlevel]);
>>> + put_bits(pb, ctx->vlc_bits[rlevel], ctx->vlc_codes[rlevel]);
>>> if (run_level)
>>> - put_bits(&ctx->m.pb, ctx->run_bits[run_level],
>>> + put_bits(pb, ctx->run_bits[run_level],
>>> ctx->run_codes[run_level]);
>>> last_non_zero = i;
>>> }
>>> }
>>> - put_bits(&ctx->m.pb, ctx->vlc_bits[0], ctx->vlc_codes[0]); // EOB
>>> + put_bits(pb, ctx->vlc_bits[0], ctx->vlc_codes[0]); // EOB
>>> }
>>>
>>> static av_always_inline
>>> @@ -879,9 +879,10 @@ static int dnxhd_encode_thread(AVCodecContext
>> *avctx, void *arg,
>>> int jobnr, int threadnr)
>>> {
>>> DNXHDEncContext *ctx = avctx->priv_data;
>>> + PutBitContext pb0, *const pb = &pb0;
>>> int mb_y = jobnr, mb_x;
>>> ctx = ctx->thread[threadnr];
>>> - init_put_bits(&ctx->m.pb, (uint8_t *)arg + ctx->data_offset +
>> ctx->slice_offs[jobnr],
>>> + init_put_bits(pb, (uint8_t *)arg + ctx->data_offset +
>> ctx->slice_offs[jobnr],
>>> ctx->slice_size[jobnr]);
>>>
>>> ctx->m.last_dc[0] =
>>> @@ -892,8 +893,8 @@ static int dnxhd_encode_thread(AVCodecContext
>> *avctx, void *arg,
>>> int qscale = ctx->mb_qscale[mb];
>>> int i;
>>>
>>> - put_bits(&ctx->m.pb, 11, qscale);
>>> - put_bits(&ctx->m.pb, 1, avctx->pix_fmt == AV_PIX_FMT_YUV444P10);
>>> + put_bits(pb, 11, qscale);
>>> + put_bits(pb, 1, avctx->pix_fmt == AV_PIX_FMT_YUV444P10);
>>>
>>> dnxhd_get_blocks(ctx, mb_x, mb_y);
>>>
>>> @@ -904,13 +905,13 @@ static int dnxhd_encode_thread(AVCodecContext
>> *avctx, void *arg,
>>> ctx->is_444 ? (((i >>
>> 1) % 3) < 1 ? 0 : 4): 4 & (2*i),
>>> qscale, &overflow);
>>>
>>> - dnxhd_encode_block(ctx, block, last_index, n);
>>> + dnxhd_encode_block(pb, ctx, block, last_index, n);
>>> }
>>> }
>>> - if (put_bits_count(&ctx->m.pb) & 31)
>>> - put_bits(&ctx->m.pb, 32 - (put_bits_count(&ctx->m.pb) & 31), 0);
>>> - flush_put_bits(&ctx->m.pb);
>>> - memset(put_bits_ptr(&ctx->m.pb), 0, put_bytes_left(&ctx->m.pb, 0));
>>> + if (put_bits_count(pb) & 31)
>>> + put_bits(pb, 32 - (put_bits_count(pb) & 31), 0);
>>> + flush_put_bits(pb);
>>> + memset(put_bits_ptr(pb), 0, put_bytes_left(pb, 0));
>>> return 0;
>>> }
>>>
>>
>> Will apply this patchset tomorrow unless there are objections.
>>
>
> No objections, but what is the rationale here? Just reducing variables
> scope?
Avoiding usage of MpegEncContext (which is only supposed to be used for
quantization dsp functions). And putting transient variables on the
stack is always good practice (unless they are too big). It also has the
advantage that the compiler can better reason about them, because their
address does not escape (currently, the compiler has to presume that all
the dsp calls in dnxhd_get_blocks() can modify the PutBitContext).
- Andreas
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack
2024-06-08 19:58 ` Andreas Rheinhardt
@ 2024-06-09 13:16 ` Vittorio Giovara
0 siblings, 0 replies; 6+ messages in thread
From: Vittorio Giovara @ 2024-06-09 13:16 UTC (permalink / raw)
To: FFmpeg development discussions and patches
On Sat, Jun 8, 2024 at 9:58 PM Andreas Rheinhardt <
andreas.rheinhardt@outlook.com> wrote:
> Vittorio Giovara:
> > On Sat, Jun 8, 2024 at 9:45 PM Andreas Rheinhardt <
> > andreas.rheinhardt@outlook.com> wrote:
> >
> >> Andreas Rheinhardt:
> >>> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> >>> ---
> >>> libavcodec/dnxhdenc.c | 33 +++++++++++++++++----------------
> >>> 1 file changed, 17 insertions(+), 16 deletions(-)
> >>>
> >>> diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c
> >>> index 0cb25d7714..4760a2932c 100644
> >>> --- a/libavcodec/dnxhdenc.c
> >>> +++ b/libavcodec/dnxhdenc.c
> >>> @@ -559,7 +559,7 @@ static int dnxhd_write_header(AVCodecContext
> *avctx,
> >> uint8_t *buf)
> >>> return 0;
> >>> }
> >>>
> >>> -static av_always_inline void dnxhd_encode_dc(DNXHDEncContext *ctx, int
> >> diff)
> >>> +static av_always_inline void dnxhd_encode_dc(PutBitContext *pb,
> >> DNXHDEncContext *ctx, int diff)
> >>> {
> >>> int nbits;
> >>> if (diff < 0) {
> >>> @@ -568,19 +568,19 @@ static av_always_inline void
> >> dnxhd_encode_dc(DNXHDEncContext *ctx, int diff)
> >>> } else {
> >>> nbits = av_log2_16bit(2 * diff);
> >>> }
> >>> - put_bits(&ctx->m.pb, ctx->cid_table->dc_bits[nbits] + nbits,
> >>> + put_bits(pb, ctx->cid_table->dc_bits[nbits] + nbits,
> >>> (ctx->cid_table->dc_codes[nbits] << nbits) +
> >>> av_mod_uintp2(diff, nbits));
> >>> }
> >>>
> >>> static av_always_inline
> >>> -void dnxhd_encode_block(DNXHDEncContext *ctx, int16_t *block,
> >>> - int last_index, int n)
> >>> +void dnxhd_encode_block(PutBitContext *pb, DNXHDEncContext *ctx,
> >>> + int16_t *block, int last_index, int n)
> >>> {
> >>> int last_non_zero = 0;
> >>> int slevel, i, j;
> >>>
> >>> - dnxhd_encode_dc(ctx, block[0] - ctx->m.last_dc[n]);
> >>> + dnxhd_encode_dc(pb, ctx, block[0] - ctx->m.last_dc[n]);
> >>> ctx->m.last_dc[n] = block[0];
> >>>
> >>> for (i = 1; i <= last_index; i++) {
> >>> @@ -589,14 +589,14 @@ void dnxhd_encode_block(DNXHDEncContext *ctx,
> >> int16_t *block,
> >>> if (slevel) {
> >>> int run_level = i - last_non_zero - 1;
> >>> int rlevel = slevel * (1 << 1) | !!run_level;
> >>> - put_bits(&ctx->m.pb, ctx->vlc_bits[rlevel],
> >> ctx->vlc_codes[rlevel]);
> >>> + put_bits(pb, ctx->vlc_bits[rlevel],
> ctx->vlc_codes[rlevel]);
> >>> if (run_level)
> >>> - put_bits(&ctx->m.pb, ctx->run_bits[run_level],
> >>> + put_bits(pb, ctx->run_bits[run_level],
> >>> ctx->run_codes[run_level]);
> >>> last_non_zero = i;
> >>> }
> >>> }
> >>> - put_bits(&ctx->m.pb, ctx->vlc_bits[0], ctx->vlc_codes[0]); // EOB
> >>> + put_bits(pb, ctx->vlc_bits[0], ctx->vlc_codes[0]); // EOB
> >>> }
> >>>
> >>> static av_always_inline
> >>> @@ -879,9 +879,10 @@ static int dnxhd_encode_thread(AVCodecContext
> >> *avctx, void *arg,
> >>> int jobnr, int threadnr)
> >>> {
> >>> DNXHDEncContext *ctx = avctx->priv_data;
> >>> + PutBitContext pb0, *const pb = &pb0;
> >>> int mb_y = jobnr, mb_x;
> >>> ctx = ctx->thread[threadnr];
> >>> - init_put_bits(&ctx->m.pb, (uint8_t *)arg + ctx->data_offset +
> >> ctx->slice_offs[jobnr],
> >>> + init_put_bits(pb, (uint8_t *)arg + ctx->data_offset +
> >> ctx->slice_offs[jobnr],
> >>> ctx->slice_size[jobnr]);
> >>>
> >>> ctx->m.last_dc[0] =
> >>> @@ -892,8 +893,8 @@ static int dnxhd_encode_thread(AVCodecContext
> >> *avctx, void *arg,
> >>> int qscale = ctx->mb_qscale[mb];
> >>> int i;
> >>>
> >>> - put_bits(&ctx->m.pb, 11, qscale);
> >>> - put_bits(&ctx->m.pb, 1, avctx->pix_fmt ==
> AV_PIX_FMT_YUV444P10);
> >>> + put_bits(pb, 11, qscale);
> >>> + put_bits(pb, 1, avctx->pix_fmt == AV_PIX_FMT_YUV444P10);
> >>>
> >>> dnxhd_get_blocks(ctx, mb_x, mb_y);
> >>>
> >>> @@ -904,13 +905,13 @@ static int dnxhd_encode_thread(AVCodecContext
> >> *avctx, void *arg,
> >>> ctx->is_444 ? (((i >>
> >> 1) % 3) < 1 ? 0 : 4): 4 & (2*i),
> >>> qscale, &overflow);
> >>>
> >>> - dnxhd_encode_block(ctx, block, last_index, n);
> >>> + dnxhd_encode_block(pb, ctx, block, last_index, n);
> >>> }
> >>> }
> >>> - if (put_bits_count(&ctx->m.pb) & 31)
> >>> - put_bits(&ctx->m.pb, 32 - (put_bits_count(&ctx->m.pb) & 31),
> 0);
> >>> - flush_put_bits(&ctx->m.pb);
> >>> - memset(put_bits_ptr(&ctx->m.pb), 0, put_bytes_left(&ctx->m.pb,
> 0));
> >>> + if (put_bits_count(pb) & 31)
> >>> + put_bits(pb, 32 - (put_bits_count(pb) & 31), 0);
> >>> + flush_put_bits(pb);
> >>> + memset(put_bits_ptr(pb), 0, put_bytes_left(pb, 0));
> >>> return 0;
> >>> }
> >>>
> >>
> >> Will apply this patchset tomorrow unless there are objections.
> >>
> >
> > No objections, but what is the rationale here? Just reducing variables
> > scope?
>
> Avoiding usage of MpegEncContext (which is only supposed to be used for
> quantization dsp functions). And putting transient variables on the
> stack is always good practice (unless they are too big). It also has the
> advantage that the compiler can better reason about them, because their
> address does not escape (currently, the compiler has to presume that all
> the dsp calls in dnxhd_get_blocks() can modify the PutBitContext).
>
Thanks for the explanation - it would be great to have this text in the
commit log too!
--
Vittorio
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-06-09 13:16 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-05 12:24 [FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack Andreas Rheinhardt
2024-06-05 12:25 ` [FFmpeg-devel] [PATCH 2/2] avcodec/dnxhdenc: Simplify padding Andreas Rheinhardt
2024-06-08 19:45 ` [FFmpeg-devel] [PATCH 1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack Andreas Rheinhardt
2024-06-08 19:51 ` Vittorio Giovara
2024-06-08 19:58 ` Andreas Rheinhardt
2024-06-09 13:16 ` Vittorio Giovara
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git