[FFmpeg-cvslog] avcodec/mpegvideo_dec: Reindent after the previous commit
Andreas Rheinhardt
git at videolan.org
Thu Jul 3 21:55:19 EEST 2025
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Sun Jun 15 22:24:58 2025 +0200| [8cff637cf0de47427e2a62790e0468b7aaa3e0c5] | committer: Andreas Rheinhardt
avcodec/mpegvideo_dec: Reindent after the previous commit
Also use dedicated variables for the accesses.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8cff637cf0de47427e2a62790e0468b7aaa3e0c5
---
libavcodec/mpegvideo_dec.c | 21 ++++++++++++---------
1 file changed, 12 insertions(+), 9 deletions(-)
diff --git a/libavcodec/mpegvideo_dec.c b/libavcodec/mpegvideo_dec.c
index c687f3a972..903d435e8c 100644
--- a/libavcodec/mpegvideo_dec.c
+++ b/libavcodec/mpegvideo_dec.c
@@ -1066,15 +1066,18 @@ void mpv_reconstruct_mb_internal(MpegEncContext *s, int16_t block[12][64],
static av_cold void debug_dct_coeffs(MPVContext *s, const int16_t block[][64])
{
- /* print DCT coefficients */
- av_log(s->avctx, AV_LOG_DEBUG, "DCT coeffs of MB at %dx%d:\n", s->mb_x, s->mb_y);
- for (int i = 0; i < 6; i++) {
- for (int j = 0; j < 64; j++) {
- av_log(s->avctx, AV_LOG_DEBUG, "%5d",
- block[i][s->idsp.idct_permutation[j]]);
- }
- av_log(s->avctx, AV_LOG_DEBUG, "\n");
- }
+ void *const logctx = s->avctx;
+ const uint8_t *const idct_permutation = s->idsp.idct_permutation;
+
+ /* print DCT coefficients */
+ av_log(logctx, AV_LOG_DEBUG, "DCT coeffs of MB at %dx%d:\n", s->mb_x, s->mb_y);
+ for (int i = 0; i < 6; i++) {
+ for (int j = 0; j < 64; j++) {
+ av_log(logctx, AV_LOG_DEBUG, "%5d",
+ block[i][idct_permutation[j]]);
+ }
+ av_log(logctx, AV_LOG_DEBUG, "\n");
+ }
}
void ff_mpv_reconstruct_mb(MpegEncContext *s, int16_t block[12][64])
More information about the ffmpeg-cvslog
mailing list