Lines Matching defs:profile
196 int profile;
342 vpcc.profile, vpcc.level, vpcc.bitdepth);
344 // Default to just vp9 in case of error while finding out profile or level
345 av_log(s, AV_LOG_WARNING, "Could not find VP9 profile and/or level\n");
437 seq.profile, seq.level, seq.tier ? "H" : "M", seq.bitdepth);
817 if (!final && c->ldash && as->max_frag_duration && !(c->profile & MPD_PROFILE_DVB))
872 if (!final && c->ldash && os->gop_size && os->frag_type != FRAG_TYPE_NONE && !(c->profile & MPD_PROFILE_DVB) &&
888 if (c->profile & MPD_PROFILE_DVB && (c->nb_as + 1) > 16) {
889 av_log(s, AV_LOG_ERROR, "DVB-DASH profile allows a max of 16 Adaptation Sets\n");
920 if (c->profile & MPD_PROFILE_DVB && (as->nb_streams + 1) > 16) {
921 av_log(s, AV_LOG_ERROR, "DVB-DASH profile allows a max of 16 Representations per Adaptation Set\n");
1163 if (c->profile & MPD_PROFILE_DASH)
1164 avio_printf(out, "%s%s", "urn:mpeg:dash:profile:isoff-live:2011", c->profile & MPD_PROFILE_DVB ? "," : "\"\n");
1165 if (c->profile & MPD_PROFILE_DVB)
1166 avio_printf(out, "%s", "urn:dvb:dash:profile:dvb-dash:2014\"\n");
1390 if (!c->profile) {
1391 av_log(s, AV_LOG_ERROR, "At least one profile must be enabled.\n");
1612 if (c->profile & MPD_PROFILE_DVB && (os->seg_duration > 15000000 || os->seg_duration < 960000)) {
1613 av_log(s, AV_LOG_ERROR, "Segment duration %"PRId64" is outside the allowed range for DVB-DASH profile\n", os->seg_duration);
2400 { "mpd_profile", "Set profiles. Elements and values used in the manifest may be constrained by them", OFFSET(profile), AV_OPT_TYPE_FLAGS, {.i64 = MPD_PROFILE_DASH }, 0, UINT_MAX, E, "mpd_profile"},
2401 { "dash", "MPEG-DASH ISO Base media file format live profile", 0, AV_OPT_TYPE_CONST, {.i64 = MPD_PROFILE_DASH }, 0, UINT_MAX, E, "mpd_profile"},
2402 { "dvb_dash", "DVB-DASH profile", 0, AV_OPT_TYPE_CONST, {.i64 = MPD_PROFILE_DVB }, 0, UINT_MAX, E, "mpd_profile"},