Searched refs:profile (Results 76 - 100 of 136) sorted by relevance

123456

/frameworks/av/media/libstagefright/
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),
517 unsigned profile, unsigned sampling_freq_index,
553 ((profile
516 MakeAACCodecSpecificData( unsigned profile, unsigned sampling_freq_index, unsigned channel_configuration) argument
[all...]
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)) {
2686 OMX_AUDIO_PARAM_AACPROFILETYPE profile; local
2687 InitOMXParams(&profile);
2688 profile.nPortIndex = kPortIndexOutput;
2691 mNode, OMX_IndexParamAudioAac, &profile, sizeof(profile));
2697 profile.nChannels = numChannels;
2699 profile.eChannelMode =
2703 profile.nSampleRate = sampleRate;
2704 profile
2748 OMX_AUDIO_PARAM_AACPROFILETYPE profile; local
4056 int32_t profile; local
4128 int32_t profile; local
4167 getAVCLevelFor( int width, int height, int rate, int bitrate, OMX_VIDEO_AVCPROFILETYPE profile) argument
4262 int32_t profile; local
4410 int32_t profile; local
4535 verifySupportForProfileAndLevel( int32_t profile, int32_t level) 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/include/media/
H A DMediaCodecInfo.h83 void addProfileLevel(uint32_t profile, uint32_t level);
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DSerializer.cpp188 const char *const AudioProfileTraits::tag = "profile";
195 status_t AudioProfileTraits::deserialize(_xmlDoc */*doc*/, const _xmlNode *root, PtrElement &profile, argument
202 profile = new Element(formatFromString(format), channelMasksFromString(channels, ","),
205 profile->setDynamicFormat(profile->getFormat() == gDynamicFormat);
206 profile->setDynamicChannels(profile->getChannels().isEmpty());
207 profile->setDynamicRate(profile->getSampleRates().isEmpty());
H A DAudioOutputDescriptor.cpp221 SwAudioOutputDescriptor::SwAudioOutputDescriptor(const sp<IOProfile>& profile, argument
223 : AudioOutputDescriptor(profile, clientInterface),
224 mProfile(profile), mIoHandle(0), mLatency(0),
228 if (profile != NULL) {
229 mFlags = (audio_output_flags_t)profile->getFlags();
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsHelper.java138 public static boolean checkHasWifiPowerReporting(BatteryStats stats, PowerProfile profile) { argument
140 profile.getAveragePower(PowerProfile.POWER_WIFI_CONTROLLER_IDLE) != 0 &&
141 profile.getAveragePower(PowerProfile.POWER_WIFI_CONTROLLER_RX) != 0 &&
142 profile.getAveragePower(PowerProfile.POWER_WIFI_CONTROLLER_TX) != 0;
146 PowerProfile profile) {
148 profile.getAveragePower(PowerProfile.POWER_BLUETOOTH_CONTROLLER_IDLE) != 0 &&
149 profile.getAveragePower(PowerProfile.POWER_BLUETOOTH_CONTROLLER_RX) != 0 &&
150 profile.getAveragePower(PowerProfile.POWER_BLUETOOTH_CONTROLLER_TX) != 0;
145 checkHasBluetoothPowerReporting(BatteryStats stats, PowerProfile profile) argument
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DA2dpSinkProfile.java52 // Order of this profile in device profiles list
59 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
78 public void onServiceDisconnected(int profile) { argument
H A DHeadsetProfile.java55 // Order of this profile in device profiles list
62 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
84 public void onServiceDisconnected(int profile) { argument
H A DHfpClientProfile.java55 // Order of this profile in device profiles list
63 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
73 Log.w(TAG, "HfpClient profile found new device: " + nextDevice);
84 public void onServiceDisconnected(int profile) { argument
H A DMapProfile.java35 * MapProfile handles Bluetooth MAP profile.
56 // Order of this profile in device profiles list
62 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
84 public void onServiceDisconnected(int profile) { argument
H A DSapProfile.java35 * SapProfile handles Bluetooth SAP profile.
54 // Order of this profile in device profiles list
61 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
83 public void onServiceDisconnected(int profile) { argument
/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
/frameworks/av/media/libmedia/
H A DMediaCodecInfo.cpp104 void MediaCodecInfo::CapabilitiesBuilder::addProfileLevel(uint32_t profile, uint32_t level) { argument
106 profileLevel.mProfile = profile;
/frameworks/base/media/java/android/media/
H A DIAudioService.aidl134 int setBluetoothA2dpDeviceConnectionState(in BluetoothDevice device, int state, int profile);
/frameworks/base/services/core/java/com/android/server/net/
H A DLockdownVpnTracker.java94 ConnectivityService connService, Vpn vpn, VpnProfile profile) {
99 mProfile = Preconditions.checkNotNull(profile);
176 Slog.e(TAG, "Invalid VPN profile; requires IP-based server and DNS");
93 LockdownVpnTracker(Context context, INetworkManagementService netService, ConnectivityService connService, Vpn vpn, VpnProfile profile) argument
/frameworks/base/services/core/java/com/android/server/pm/
H A DUserManagerService.java253 * device owner / profile owners.
267 * with device / profile owner restrictions. We'll initialize it lazily; use
620 UserInfo profile = mUsers.valueAt(i).info;
621 if (!isProfileOf(user, profile)) {
624 if (enabledOnly && !profile.isEnabled()) {
627 if (mRemovingUserIds.get(profile.id)) {
630 if (profile.partial) {
633 result.add(profile.id);
656 checkManageUsersPermission("check if in the same profile group");
679 checkManageUsersPermission("get the profile paren
698 isProfileOf(UserInfo user, UserInfo profile) argument
[all...]
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsManager.java1097 * @param profile a call profile to make the call
1104 public ImsCall makeCall(int serviceId, ImsCallProfile profile, String[] callees, argument
1108 + ", profile=" + profile);
1113 ImsCall call = new ImsCall(mContext, profile);
1116 ImsCallSession session = createCallSession(serviceId, profile);
1346 * Creates a {@link ImsCallSession} with the specified call profile.
1351 * @param profile a call profile t
1353 createCallSession(int serviceId, ImsCallProfile profile) argument
[all...]
/frameworks/base/core/java/android/net/
H A DIConnectivityManager.aidl118 void startLegacyVpn(in VpnProfile profile);
/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsService.java217 * Tie managed profile to primary profile if it is in unified mode and not tied before.
219 * @param managedUserId Managed profile user Id
220 * @param managedUserPassword Managed profile original password (when it has separated lock).
224 if (DEBUG) Slog.v(TAG, "Check child profile lock for user: " + managedUserId);
225 // Only for managed profile
229 // Do not tie managed profile when work challenge is enabled
233 // Do not tie managed profile to parent when it's done already
243 if (DEBUG) Slog.v(TAG, "Tie managed profile to parent now!");
256 Slog.e(TAG, "Fail to tie managed profile",
[all...]
/frameworks/native/cmds/installd/
H A Dcommands.cpp96 // Keep profile paths in sync with ActivityThread.
270 static bool clear_profile(const std::string& profile) { argument
271 base::unique_fd ufd(open(profile.c_str(), O_WRONLY | O_NOFOLLOW | O_CLOEXEC));
274 PLOG(WARNING) << "Could not open profile " << profile;
284 PLOG(WARNING) << "Error locking profile " << profile;
286 // This implies that the app owning this profile is running
290 // (the app will write again to the profile).
306 PLOG(WARNING) << "Could not truncate " << profile;
322 std::string profile = create_primary_profile(profile_dir); local
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.h173 status_t setParamVideoEncoderProfile(int32_t profile);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DH264SwDecApi.c257 /* profile */
258 pDecInfo->profile = h264bsdProfile(pStorage);
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioOutputDescriptor.h96 SwAudioOutputDescriptor(const sp<IOProfile>& profile,
123 const sp<IOProfile> mProfile; // I/O profile this output derives from

Completed in 1694 milliseconds

123456