Searched refs:max_score (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavformat/ |
D | dvbsub.c | 33 int max_score = 0; in dvbsub_probe() local 59 if (min && j > max_score) in dvbsub_probe() 60 max_score = j; in dvbsub_probe() 64 if (max_score > 5) in dvbsub_probe()
|
/third_party/ffmpeg/libavcodec/ |
D | flac_parser.c | 65 int max_score; /**< maximum score found after checking each child that member 420 if (header->max_score != FLAC_HEADER_NOT_SCORED_YET) in score_header() 421 return header->max_score; in score_header() 430 header->max_score = base_score; in score_header() 443 if (FLAC_HEADER_BASE_SCORE + child_score > header->max_score) { in score_header() 446 header->max_score = base_score + child_score; in score_header() 451 return header->max_score; in score_header() 460 curr->max_score = FLAC_HEADER_NOT_SCORED_YET; in score_sequences() 466 best_score = curr->max_score; in score_sequences() 556 curr->max_score, curr->offset, curr->next->offset); in flac_parse() [all …]
|
D | opusenc_psy.c | 322 float max_score = 1.0f; in celt_gauge_psy_weight() local 342 if (band_score[i] > max_score) in celt_gauge_psy_weight() 343 max_score = band_score[i]; in celt_gauge_psy_weight() 347 f_out->alloc_boost[i] = (int)((band_score[i]/max_score)*3.0f); in celt_gauge_psy_weight()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_identity.c | 40 double score, min_score, max_score, score_comp[4]; member 217 s->max_score = FFMAX(s->max_score, score); in do_identity() 306 s->max_score = -INFINITY; in config_input_ref() 377 s->max_score); in uninit()
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_pair_schedule.c | 1063 int * max_score, in update_max_score() argument 1072 if (!*max_inst_out || score > *max_score) { in update_max_score() 1073 *max_score = score; in update_max_score() 1084 int max_score = -1; in emit_instruction() local 1109 update_max_score(s, &s->ReadyFullALU, &max_score, &max_inst, &max_list); in emit_instruction() 1110 update_max_score(s, &s->ReadyRGB, &max_score, &max_inst, &max_list); in emit_instruction() 1111 update_max_score(s, &s->ReadyAlpha, &max_score, &max_inst, &max_list); in emit_instruction() 1113 if (tex_count >= s->max_tex_group || max_score == -1 in emit_instruction() 1115 || (tex_count > 0 && max_score < NO_OUTPUT_SCORE)) { in emit_instruction()
|