Commit 33815fa1 authored by Reimar Döffinger's avatar Reimar Döffinger Committed by Ramiro Polla

mlp: Use smaller CRC tables if CONFIG_SMALL.

Patch by Reimar.

Originally committed as revision 20253 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 45fc24a0
...@@ -42,9 +42,14 @@ const uint8_t ff_mlp_huffman_tables[3][18][2] = { ...@@ -42,9 +42,14 @@ const uint8_t ff_mlp_huffman_tables[3][18][2] = {
}; };
static int crc_init = 0; static int crc_init = 0;
static AVCRC crc_63[1024]; #if CONFIG_SMALL
static AVCRC crc_1D[1024]; #define CRC_TABLE_SIZE 257
static AVCRC crc_2D[1024]; #else
#define CRC_TABLE_SIZE 1024
#endif
static AVCRC crc_63[CRC_TABLE_SIZE];
static AVCRC crc_1D[CRC_TABLE_SIZE];
static AVCRC crc_2D[CRC_TABLE_SIZE];
av_cold void ff_mlp_init_crc(void) av_cold void ff_mlp_init_crc(void)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment