Lines Matching defs:profile
74 int profile;
299 sps->profile_idc = avctx->profile & 0xff;
301 if (avctx->profile == FF_PROFILE_H264_CONSTRAINED_BASELINE ||
302 avctx->profile == FF_PROFILE_H264_MAIN)
305 if (avctx->profile == FF_PROFILE_H264_HIGH)
308 if (avctx->profile == FF_PROFILE_H264_MAIN ||
309 avctx->profile == FF_PROFILE_H264_HIGH) {
1114 ctx->roi_quant_range = 51 + 6 * (ctx->profile->depth - 8);
1166 if (avctx->profile == FF_PROFILE_UNKNOWN)
1167 avctx->profile = priv->profile;
1174 switch (avctx->profile) {
1176 av_log(avctx, AV_LOG_WARNING, "H.264 baseline profile is not "
1177 "supported, using constrained baseline profile instead.\n");
1178 avctx->profile = FF_PROFILE_H264_CONSTRAINED_BASELINE;
1181 av_log(avctx, AV_LOG_ERROR, "H.264 extended profile "
1267 { "profile", "Set profile (profile_idc and constraint_set*_flag)",
1268 OFFSET(profile), AV_OPT_TYPE_INT,
1269 { .i64 = FF_PROFILE_UNKNOWN }, FF_PROFILE_UNKNOWN, 0xffff, FLAGS, "profile" },
1272 { .i64 = value }, 0, 0, FLAGS, "profile"