Lines Matching defs:profile
2159 static int mpeg4_decode_profile_level(MpegEncContext *s, GetBitContext *gb, int *profile, int *level)
2162 *profile = get_bits(gb, 4);
2165 // for Simple profile, level 0
2166 if (*profile == 0 && *level == 8) {
2302 avpriv_request_sample(s->avctx, "MPEG-4 Studio profile non rectangular shape");
2321 avpriv_request_sample(s->avctx, "MPEG-4 Studio profile bit-depth %u", bits_per_raw_sample);
2337 /* Do the same check as non-studio profile */
2383 /* If we are in studio profile (per vo_type), check if its all consistent
2390 if (s->avctx->profile != FF_PROFILE_UNKNOWN && s->avctx->profile != FF_PROFILE_MPEG4_SIMPLE_STUDIO)
2393 s->avctx->profile = FF_PROFILE_MPEG4_SIMPLE_STUDIO;
3320 // If we have not switched to studio profile than we also did not switch bps
3425 int profile, level;
3426 mpeg4_decode_profile_level(s, gb, &profile, &level);
3427 if (profile == FF_PROFILE_MPEG4_SIMPLE_STUDIO &&
3433 avpriv_request_sample(s->avctx, "Mix of studio and non studio profile");
3436 s->avctx->profile = profile;