Home | History | Annotate | Download | only in decoder

Lines Matching defs:profile

2121   if (cm->profile >= PROFILE_2) {
2135 if (cm->profile == PROFILE_1 || cm->profile == PROFILE_3) {
2140 "4:2:0 color not supported in profile 1 or 3");
2149 if (cm->profile == PROFILE_1 || cm->profile == PROFILE_3) {
2158 "4:4:4 color not supported in profile
2194 cm->profile = vp9_read_profile(rb);
2196 if (cm->profile >= MAX_PROFILES)
2198 "Unsupported bitstream profile");
2200 if (cm->profile >= PROFILE_2)
2202 "Unsupported bitstream profile");
2256 if (cm->profile > PROFILE_0) {
2260 // of either the color format or color sub-sampling in profile 0. VP9
2481 int profile = vpx_rb_read_bit(rb);
2482 profile |= vpx_rb_read_bit(rb) << 1;
2483 if (profile > 2) profile += vpx_rb_read_bit(rb);
2484 return (BITSTREAM_PROFILE)profile;
2503 *p_data_end = data + (cm->profile <= PROFILE_2 ? 1 : 2);