Home
last modified time | relevance | path

Searched refs:level_constraint (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/api/video_codecs/
Dh264_profile_level_id.cc167 const LevelConstraint& level_constraint = kLevelConstraints[i]; in H264SupportedLevel() local
168 if (level_constraint.max_macroblock_frame_size * kPixelsPerMacroblock <= in H264SupportedLevel()
170 level_constraint.max_macroblocks_per_second <= in H264SupportedLevel()
171 max_fps * level_constraint.max_macroblock_frame_size) { in H264SupportedLevel()
172 return level_constraint.level; in H264SupportedLevel()
/external/libvpx/vp9/encoder/
Dvp9_encoder.c1497 set_level_constraint(&cpi->level_constraint, in init_config()
1990 set_level_constraint(&cpi->level_constraint, in vp9_change_config()
2376 init_level_constraint(&cpi->level_constraint); in vp9_create_compressor()
5982 LevelConstraint *const ls = &cpi->level_constraint;
6008 LevelConstraint *const level_constraint = &cpi->level_constraint; local
6009 const int8_t level_index = level_constraint->level_index;
6126 if (level_index >= 0 && level_constraint->fail_flag == 0) {
6129 level_constraint->fail_flag |= (1 << LUMA_PIC_SIZE_TOO_LARGE);
6138 level_constraint->fail_flag |= (1 << LUMA_PIC_BREADTH_TOO_LARGE);
6148 level_constraint->fail_flag |= (1 << LUMA_SAMPLE_RATE_TOO_LARGE);
[all …]
Dvp9_encoder.h955 LevelConstraint level_constraint; member