Lines Matching defs:profile
65 const char *profile;
836 x4->profile = x4->profile_opt;
837 /* Allow specifying the x264 profile through AVCodecContext. */
838 if (!x4->profile)
839 switch (avctx->profile) {
841 x4->profile = "baseline";
844 x4->profile = "high";
847 x4->profile = "high10";
850 x4->profile = "high422";
853 x4->profile = "high444";
856 x4->profile = "main";
874 if (x4->profile)
875 if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
877 av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
1103 { "profile", "Set profile restrictions (cf. x264 --fullhelp)", OFFSET(profile_opt), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
1138 { "8x8dct", "High profile 8x8 transform.", OFFSET(dct8x8), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},