Browse Source

avcodec/mjpegenc: Constify parent ctx in encode_block()

Said parent is shared between all slice contexts and encode_block()
can be run concurrently by slice threads, so the parent context
must not be (and is not) modified. So constify the pointers.

Reviewed-by: Ramiro Polla <ramiro.polla@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Andreas Rheinhardt 1 week ago
parent
commit
8940a6153f
1 changed files with 3 additions and 3 deletions
  1. 3 3
      libavcodec/mjpegenc.c

+ 3 - 3
libavcodec/mjpegenc.c

@@ -480,9 +480,9 @@ static void encode_block(MpegEncContext *s, int16_t *block, int n)
 {
     int mant, nbits, code, i, j;
     int component, dc, run, last_index, val;
-    MJpegContext *m = s->mjpeg_ctx;
-    uint8_t *huff_size_ac;
-    uint16_t *huff_code_ac;
+    const MJpegContext *const m = s->mjpeg_ctx;
+    const uint16_t *huff_code_ac;
+    const uint8_t  *huff_size_ac;
 
     /* DC coef */
     component = (n <= 3 ? 0 : (n&1) + 1);