Lines Matching defs:profile
105 } profile[] = {
120 for (i = 0; i < FF_ARRAY_ELEMS(profile); i++) {
121 if (profile[i].ffmpeg_val == p)
122 return profile[i].v4l2_val;
132 } profile[] = {
141 for (i = 0; i < FF_ARRAY_ELEMS(profile); i++) {
142 if (profile[i].ffmpeg_val == p)
143 return profile[i].v4l2_val;
202 "Encoder Context: id (%d), profile (%d), frame rate(%d/%d), number b-frames (%d), "
204 avctx->codec_id, avctx->profile, avctx->framerate.num, avctx->framerate.den,
209 if (avctx->profile != FF_PROFILE_UNKNOWN) {
210 val = v4l2_h264_profile_from_ff(avctx->profile);
212 av_log(avctx, AV_LOG_WARNING, "h264 profile not found\n");
214 v4l2_set_ext_ctrl(s, MPEG_CID(H264_PROFILE), val, "h264 profile", 1);
222 if (avctx->profile != FF_PROFILE_UNKNOWN) {
223 val = v4l2_mpeg4_profile_from_ff(avctx->profile);
225 av_log(avctx, AV_LOG_WARNING, "mpeg4 profile not found\n");
227 v4l2_set_ext_ctrl(s, MPEG_CID(MPEG4_PROFILE), val, "mpeg4 profile", 1);