Lines Matching defs:profile
221 if (avctx->profile == FF_PROFILE_HEVC_REXT) {
249 pic_param_size = avctx->profile == FF_PROFILE_HEVC_REXT ?
302 int slice_param_size = avctx->profile == FF_PROFILE_HEVC_REXT ?
332 int is_rext = avctx->profile >= FF_PROFILE_HEVC_REXT;
335 if (avctx->profile >= FF_PROFILE_HEVC_REXT)
416 int slice_param_size = avctx->profile == FF_PROFILE_HEVC_REXT ?
481 if (avctx->profile == FF_PROFILE_HEVC_REXT) {
555 const H265ProfileDescriptor *profile;
561 profile = ff_h265_get_profile(&h265_raw_ptl);
562 if (!profile) {
563 av_log(avctx, AV_LOG_WARNING, "HEVC profile is not found.\n");
566 av_log(avctx, AV_LOG_VERBOSE, "HEVC profile %s is found.\n", profile->name);
570 if (!strcmp(profile->name, "Main 4:2:2 10") ||
571 !strcmp(profile->name, "Main 4:2:2 10 Intra"))
573 else if (!strcmp(profile->name, "Main 4:4:4") ||
574 !strcmp(profile->name, "Main 4:4:4 Intra"))
576 else if (!strcmp(profile->name, "Main 4:4:4 10") ||
577 !strcmp(profile->name, "Main 4:4:4 10 Intra"))
580 av_log(avctx, AV_LOG_WARNING, "HEVC profile %s is "
581 "not supported with this VA version.\n", profile->name);
586 // Default to selecting Main profile if profile mismatch is allowed