/third_party/ffmpeg/libavcodec/ |
H A D | rl.c | 28 uint8_t static_store[2][2 * MAX_RUN + MAX_LEVEL + 3]) in ff_rl_init() 36 uint8_t *index_run = static_store[last] + MAX_RUN + 1 + MAX_LEVEL + 1; in ff_rl_init() 88 level = MAX_LEVEL; in ff_rl_init_vlc()
|
H A D | rl.h | 36 #define MAX_LEVEL 64 macro 54 * @param static_store static uint8_t array[2][2*MAX_RUN + MAX_LEVEL + 3] 60 void ff_rl_init(RLTable *rl, uint8_t static_store[2][2*MAX_RUN + MAX_LEVEL + 3]);
|
H A D | msmpeg4enc.c | 48 static uint8_t rl_length[NB_RL_TABLES][MAX_LEVEL+1][MAX_RUN+1][2]; 97 if (level > MAX_LEVEL) in get_size_of_code() 128 for (int level = 1; level <= MAX_LEVEL; level++) { in msmpeg4_encode_init_static() 168 for(level=0; level<=MAX_LEVEL; level++){ in find_best_tables() 610 if(level<=MAX_LEVEL && run<=MAX_RUN){ in ff_msmpeg4_encode_block() 628 if (level > MAX_LEVEL) in ff_msmpeg4_encode_block()
|
H A D | msmpeg4enc.h | 34 unsigned ac_stats[2][2][MAX_LEVEL + 1][MAX_RUN + 1][2];
|
H A D | h261enc.c | 342 av_assert0(MAX_LEVEL >= 64); in init_uni_h261_rl_tab() 379 static uint8_t h261_rl_table_store[2][2 * MAX_RUN + MAX_LEVEL + 3]; in h261_encode_init_static()
|
H A D | mpeg4video.c | 32 static uint8_t mpeg4_rl_intra_table[2][2 * MAX_RUN + MAX_LEVEL + 3]; in mpeg4_init_rl_intra()
|
H A D | mpeg12.c | 81 level = MAX_LEVEL; in ff_init_2d_vlc_rl()
|
H A D | h263.c | 43 static uint8_t h263_rl_inter_table[2][2 * MAX_RUN + MAX_LEVEL + 3]; in h263_init_rl_inter()
|
H A D | speedhqenc.c | 43 static uint8_t speedhq_static_rl_table_store[2][2*MAX_RUN + MAX_LEVEL + 3];
|
H A D | msmpeg4.c | 109 static uint8_t rl_table_store[NB_RL_TABLES][2][2 * MAX_RUN + MAX_LEVEL + 3]; in msmpeg4_common_init_static()
|
H A D | ituh263enc.c | 766 av_assert0(MAX_LEVEL >= 64); in init_uni_h263_rl_tab() 805 static uint8_t rl_intra_table[2][2 * MAX_RUN + MAX_LEVEL + 3]; in h263_encode_init_static()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | config_enc.c | 138 #define MAX_LEVEL 9 macro 144 } kLosslessPresets[MAX_LEVEL + 1] = { 150 if (config == NULL || level < 0 || level > MAX_LEVEL) return 0; in WebPConfigLosslessPreset()
|
H A D | vp8i_enc.h | 39 MAX_LEVEL = 2047 // max level (note: max codable is 2047 + 67) enumerator
|
H A D | quant_enc.c | 648 if (thresh_level > MAX_LEVEL) thresh_level = MAX_LEVEL; in TrellisQuantizeBlock() 649 if (level0 > MAX_LEVEL) level0 = MAX_LEVEL; in TrellisQuantizeBlock()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_spp.c | 65 { "quality", "set quality", OFFSET(log2_count), AV_OPT_TYPE_INT, {.i64 = 3}, 0, MAX_LEVEL, TFLAGS }, 301 FFMIN(8, height + 8 - y), MAX_LEVEL - p->log2_count, in filter() 306 FFMIN(8, height + 8 - y), MAX_LEVEL - p->log2_count, in filter() 449 s->log2_count = MAX_LEVEL; in process_command() 451 s->log2_count = av_clip(strtol(args, NULL, 10), 0, MAX_LEVEL); in process_command()
|
H A D | lut3d.h | 45 #define MAX_LEVEL 256 macro
|
H A D | vf_spp.h | 29 #define MAX_LEVEL 6 /* quality levels */ macro
|
H A D | vf_fspp.h | 30 #define MAX_LEVEL 5 macro
|
H A D | vf_uspp.c | 41 #define MAX_LEVEL 8 /* quality levels */ macro 67 { "quality", "set quality", OFFSET(log2_count), AV_OPT_TYPE_INT, {.i64 = 3}, 0, MAX_LEVEL, FLAGS },
|
H A D | vf_lut3d.c | 610 if (lutsize < 2 || lutsize > MAX_LEVEL) { in allocate_3dlut() 804 in > MAX_LEVEL*MAX_LEVEL*MAX_LEVEL || in parse_m3d() 805 out > MAX_LEVEL*MAX_LEVEL*MAX_LEVEL) { in parse_m3d() 1502 if (level > MAX_LEVEL) { in config_clut() 1503 const int max_clut_level = sqrt(MAX_LEVEL); in config_clut()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | cost.c | 52 const uint16_t VP8LevelFixedCosts[MAX_LEVEL + 1] = {
|
H A D | enc_sse41.c | 203 const __m128i max_coeff_2047 = _mm_set1_epi16(MAX_LEVEL); in DoQuantizeBlock_SSE41()
|
H A D | enc.c | 666 if (level > MAX_LEVEL) level = MAX_LEVEL; in QuantizeBlock_C()
|
H A D | enc_mips32.c | 195 int max_level = MAX_LEVEL; in QuantizeBlock_MIPS32()
|
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_spp.c | 211 : "r"(dst + width), "r"(dither[y]), "g"(log2_scale), "g"(MAX_LEVEL - log2_scale) in store_slice_mmx()
|