]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/qpeg.c
cosmetics: use a better function name than uncouple_channels()
[ffmpeg] / libavcodec / qpeg.c
index 36c864c1899f9ff64dcc01d44d85bfa565244752..f0ef1ef94c4c6cd7d2b054d30c2d661a4f2836ec 100644 (file)
@@ -108,9 +108,9 @@ static void qpeg_decode_intra(const uint8_t *src, uint8_t *dst, int size,
     }
 }
 
-static int qpeg_table_h[16] =
+static const int qpeg_table_h[16] =
  { 0x00, 0x20, 0x20, 0x20, 0x18, 0x10, 0x10, 0x20, 0x10, 0x08, 0x18, 0x08, 0x08, 0x18, 0x10, 0x04};
-static int qpeg_table_w[16] =
+static const int qpeg_table_w[16] =
  { 0x00, 0x20, 0x18, 0x08, 0x18, 0x10, 0x20, 0x10, 0x08, 0x10, 0x20, 0x20, 0x08, 0x10, 0x18, 0x04};
 
 /* Decodes delta frames */