Lines Matching defs:profile
49 int profile;
83 { "profile", "set profile restrictions", OFFSET(profile), AV_OPT_TYPE_INT, { .i64 = FF_PROFILE_UNKNOWN }, FF_PROFILE_UNKNOWN, 0xffff, VE, "profile" },
84 #define PROFILE(name, value) name, NULL, 0, AV_OPT_TYPE_CONST, { .i64 = value }, 0, 0, VE, "profile"
200 /* Allow specifying the libopenh264 profile through AVCodecContext. */
201 if (FF_PROFILE_UNKNOWN == s->profile &&
202 FF_PROFILE_UNKNOWN != avctx->profile)
203 switch (avctx->profile) {
207 s->profile = avctx->profile;
211 "Unsupported avctx->profile: %d.\n", avctx->profile);
215 if (s->profile == FF_PROFILE_UNKNOWN && s->coder >= 0)
216 s->profile = s->coder == 0 ? FF_PROFILE_H264_CONSTRAINED_BASELINE :
223 switch (s->profile) {
236 s->profile = FF_PROFILE_H264_CONSTRAINED_BASELINE;
242 s->profile = FF_PROFILE_H264_CONSTRAINED_BASELINE;
244 av_log(avctx, AV_LOG_WARNING, "Unsupported profile, "
254 param.sSpatialLayers[0].uiProfileIdc = s->profile;