Lines Matching refs:profile

1221             if (!msg->findInt32("aac-profile", &aacProfile)) {
1417 OMX_AUDIO_PARAM_AACPROFILETYPE profile;
1418 InitOMXParams(&profile);
1419 profile.nPortIndex = kPortIndexOutput;
1422 mNode, OMX_IndexParamAudioAac, &profile, sizeof(profile));
1428 profile.nChannels = numChannels;
1430 profile.eChannelMode =
1434 profile.nSampleRate = sampleRate;
1435 profile.nBitRate = bitRate;
1436 profile.nAudioBandWidth = 0;
1437 profile.nFrameLength = 0;
1438 profile.nAACtools = OMX_AUDIO_AACToolAll;
1439 profile.nAACERtools = OMX_AUDIO_AACERNone;
1440 profile.eAACProfile = (OMX_AUDIO_AACPROFILETYPE) aacProfile;
1441 profile.eAACStreamFormat = OMX_AUDIO_AACStreamFormatMP4FF;
1444 mNode, OMX_IndexParamAudioAac, &profile, sizeof(profile));
1453 OMX_AUDIO_PARAM_AACPROFILETYPE profile;
1454 InitOMXParams(&profile);
1455 profile.nPortIndex = kPortIndexInput;
1458 mNode, OMX_IndexParamAudioAac, &profile, sizeof(profile));
1464 profile.nChannels = numChannels;
1465 profile.nSampleRate = sampleRate;
1467 profile.eAACStreamFormat =
1473 mNode, OMX_IndexParamAudioAac, &profile, sizeof(profile));
2052 int32_t profile;
2053 if (msg->findInt32("profile", &profile)) {
2059 err = verifySupportForProfileAndLevel(profile, level);
2065 mpeg4type.eProfile = static_cast<OMX_VIDEO_MPEG4PROFILETYPE>(profile);
2123 int32_t profile;
2124 if (msg->findInt32("profile", &profile)) {
2130 err = verifySupportForProfileAndLevel(profile, level);
2136 h263type.eProfile = static_cast<OMX_VIDEO_H263PROFILETYPE>(profile);
2204 int32_t profile;
2205 if (msg->findInt32("profile", &profile)) {
2211 err = verifySupportForProfileAndLevel(profile, level);
2217 h264type.eProfile = static_cast<OMX_VIDEO_AVCPROFILETYPE>(profile);
2223 ALOGW("Use baseline profile instead of %d for AVC recording",
2281 int32_t profile, int32_t level) {
2300 if (profile == supportedProfile && level <= supportedLevel) {