Lines Matching defs:profile
476 const char *av_get_profile_name(const AVCodec *codec, int profile)
479 if (profile == FF_PROFILE_UNKNOWN || !codec->profiles)
482 for (p = codec->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
483 if (p->profile == profile)
489 const char *avcodec_profile_name(enum AVCodecID codec_id, int profile)
494 if (profile == FF_PROFILE_UNKNOWN || !desc || !desc->profiles)
497 for (p = desc->profiles; p->profile != FF_PROFILE_UNKNOWN; p++)
498 if (p->profile == profile)