Searched refs:profile (Results 1 - 25 of 135) sorted by path

123456

/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp52 fprintf(stderr, " -p encoder profile. see omx il header (default: encoder specific)\n");
175 int profile = -1; // Encoder specific default local
237 profile = atoi(optarg);
298 if (profile != -1) {
299 enc_meta->setInt32("profile", profile);
H A Dsf2.cpp330 uint8_t profile __unused = ptr[1];
H A Dstagefright.cpp135 uint8_t profile = ptr[1]; local
137 fprintf(stderr, "AVC video profile %d and level %d\n", profile, level);
/frameworks/av/include/media/
H A DMediaCodecInfo.h83 void addProfileLevel(uint32_t profile, uint32_t level);
/frameworks/av/include/media/stagefright/
H A DACodec.h105 OMX_VIDEO_AVCPROFILETYPE profile = OMX_VIDEO_AVCProfileBaseline);
491 status_t verifySupportForProfileAndLevel(int32_t profile, int32_t level);
/frameworks/av/media/libmedia/
H A DMediaCodecInfo.cpp104 void MediaCodecInfo::CapabilitiesBuilder::addProfileLevel(uint32_t profile, uint32_t level) { argument
106 profileLevel.mProfile = profile;
H A DMediaProfiles.cpp333 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
334 profile->mCameraId = cameraId;
338 profile->mFileFormat = static_cast<output_format>(fileFormat);
339 profile->mQuality = static_cast<camcorder_quality>(quality);
340 profile->mDuration = atoi(atts[5]);
341 return profile;
487 // Check high and low from either camcorder profile, timelapse profile
488 // or high speed profile, but not all of them. Default, check camcorder profile
547 CamcorderProfile *profile = local
645 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
662 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
701 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
718 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp512 status_t StagefrightRecorder::setParamVideoEncoderProfile(int32_t profile) { argument
513 ALOGV("setParamVideoEncoderProfile: %d", profile);
517 mVideoEncoderProfile = profile;
695 } else if (key == "video-param-encoder-profile") {
696 int32_t profile; local
697 if (safe_strtoi32(value.string(), &profile)) {
698 return setParamVideoEncoderProfile(profile);
959 format->setInt32("aac-profile", OMX_AUDIO_AACObjectLC);
963 format->setInt32("aac-profile", OMX_AUDIO_AACObjectHE);
967 format->setInt32("aac-profile", OMX_AUDIO_AACObjectEL
[all...]
H A DStagefrightRecorder.h173 status_t setParamVideoEncoderProfile(int32_t profile);
/frameworks/av/media/libstagefright/
H A DAACExtractor.cpp155 uint8_t profile, sf_index, channel, header[2]; local
160 profile = (header[0] >> 6) & 0x3;
168 mMeta = MakeAACCodecSpecificData(profile, sf_index, channel);
H A DACodec.cpp2133 if (!msg->findInt32("aac-profile", &aacProfile)) {
2583 OMX_AUDIO_PARAM_AACPROFILETYPE profile; local
2584 InitOMXParams(&profile);
2585 profile.nPortIndex = kPortIndexOutput;
2588 mNode, OMX_IndexParamAudioAac, &profile, sizeof(profile));
2594 profile.nChannels = numChannels;
2596 profile.eChannelMode =
2600 profile.nSampleRate = sampleRate;
2601 profile
2645 OMX_AUDIO_PARAM_AACPROFILETYPE profile; local
3867 int32_t profile; local
3938 int32_t profile; local
3977 getAVCLevelFor( int width, int height, int rate, int bitrate, OMX_VIDEO_AVCPROFILETYPE profile) argument
4071 int32_t profile; local
4181 int32_t profile; local
4288 verifySupportForProfileAndLevel( int32_t profile, int32_t level) argument
[all...]
H A DMPEG2TSWriter.cpp306 unsigned profile = (codec_specific_data[0] >> 3) - 1; local
323 profile << 6
H A DUtils.cpp191 OMX_AUDIO_AACPROFILETYPE profile; local
192 if (profiles.map(audioObjectType, &profile)) {
193 format->setInt32("profile", profile);
201 const uint8_t profile = ptr[1]; local
235 // set profile & level if they are recognized
238 if (profiles.map(profile, &codecProfile)) {
239 format->setInt32("profile", codecProfile);
241 // for 9 && 11 decide level based on profile and constraint_set3 flag
242 if (level == 11 && (profile
255 const uint8_t profile = ptr[6]; local
297 const uint8_t profile = ptr[1] & 0x1F; local
397 OMX_VIDEO_MPEG2PROFILETYPE profile; local
425 OMX_VIDEO_MPEG2PROFILETYPE profile; local
550 OMX_VIDEO_VP9PROFILETYPE profile; local
[all...]
H A Davc_utils.cpp343 const char *AVCProfileToString(uint8_t profile) { argument
344 switch (profile) {
391 memcpy(out, seqParamSet->data() + 1, 3); // profile/level...
393 uint8_t profile = out[0]; local
429 ALOGI("found AVC codec config (%d x %d, %s-profile level %d.%d) "
433 AVCProfileToString(profile),
439 ALOGI("found AVC codec config (%d x %d, %s-profile level %d.%d)",
442 AVCProfileToString(profile),
495 unsigned profile, unsigned sampling_freq_index,
531 ((profile
494 MakeAACCodecSpecificData( unsigned profile, unsigned sampling_freq_index, unsigned channel_configuration) argument
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DSoftAACEncoder2.cpp406 static AUDIO_OBJECT_TYPE getAOTFromProfile(OMX_U32 profile) { argument
407 if (profile == OMX_AUDIO_AACObjectLC) {
409 } else if (profile == OMX_AUDIO_AACObjectHE) {
411 } else if (profile == OMX_AUDIO_AACObjectHE_PS) {
413 } else if (profile == OMX_AUDIO_AACObjectLD) {
415 } else if (profile == OMX_AUDIO_AACObjectELD) {
418 ALOGW("Unsupported AAC profile - defaulting to AAC-LC");
493 ALOGE("Unable to initialize encoder for profile / sample-rate / bit-rate / channels");
/frameworks/av/media/libstagefright/codecs/aacenc/inc/
H A Dbitenc.h36 Word16 profile; member in struct:BITSTREAMENCODER_INIT
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Daacenc_core.c62 Word16 profile = 1; local
130 hAacEnc->bseInit.profile = profile;
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.cpp295 // Set profile and level
296 mEncParams->profile = mAVCEncProfile;
464 // PV's AVC encoder only supports baseline profile
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Davcenc_api.h95 /* if profile/level is set to zero, encoder will choose the closest one for you */
96 AVCProfile profile; /* profile of the bitstream to be compliant with*/ member in struct:tagAVCEncParam
184 encoding parameters against the specified profile/level and the list of supported
H A Dinit.cpp531 seqParam->profile_idc = encParam->profile;
564 /* verify the profile setting */
570 if (seqParam->profile_idc == 0) /* find profile for this setting */
572 /* find the right profile for it */
609 /* check the list of supported profile by this library */
/frameworks/av/media/libstagefright/codecs/avc/enc/test/
H A Dh264_enc_test.cpp218 encParams.profile = AVC_BASELINE;
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvop.cpp92 uint32 profile = 0x01; local
108 tmpvar = (uint32) BitstreamReadBits16(stream, 8); /* profile */
134 profile = tmpvar;
137 // save the profile and level for the query
296 if (profile != 0x10 && profile != 0x11 && profile != 0x12)
303 if (profile != 0x01 && profile != 0x02 && profile !
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/
H A DH264SwDecApi.h120 u32 profile; member in struct:__anon515
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DDecTestBench.c239 DEBUG(("Profile %d\n", decInfo.profile));
H A DH264SwDecApi.c257 /* profile */
258 pDecInfo->profile = h264bsdProfile(pStorage);

Completed in 8556 milliseconds

123456