Home
last modified time | relevance | path

Searched refs:vc (Results 1 – 19 of 19) sorted by relevance

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
DMediaVisualizerTest.java231 AudioEffect vc = null; in test2_0PollingCapture() local
244 vc = new AudioEffect( in test2_0PollingCapture()
249 vc.setEnabled(true); in test2_0PollingCapture()
296 if (vc != null) { in test2_0PollingCapture()
297 vc.release(); in test2_0PollingCapture()
310 AudioEffect vc = null; in test2_1ListenerCapture() local
323 vc = new AudioEffect( in test2_1ListenerCapture()
328 vc.setEnabled(true); in test2_1ListenerCapture()
428 if (vc != null) { in test2_1ListenerCapture()
429 vc.release(); in test2_1ListenerCapture()
[all …]
DMediaPresetReverbTest.java198 AudioEffect vc = null; in test2_0AuxiliarySoundModification() local
212 vc = new AudioEffect( in test2_0AuxiliarySoundModification()
217 vc.setEnabled(true); in test2_0AuxiliarySoundModification()
252 if (vc != null) { in test2_0AuxiliarySoundModification()
253 vc.release(); in test2_0AuxiliarySoundModification()
270 AudioEffect vc = null; in test2_1InsertSoundModification() local
283 vc = new AudioEffect( in test2_1InsertSoundModification()
288 vc.setEnabled(true); in test2_1InsertSoundModification()
334 if (vc != null) { in test2_1InsertSoundModification()
335 vc.release(); in test2_1InsertSoundModification()
DMediaEnvReverbTest.java353 AudioEffect vc = null; in test2_0AuxiliarySoundModification() local
367 vc = new AudioEffect( in test2_0AuxiliarySoundModification()
372 vc.setEnabled(true); in test2_0AuxiliarySoundModification()
409 if (vc != null) { in test2_0AuxiliarySoundModification()
410 vc.release(); in test2_0AuxiliarySoundModification()
427 AudioEffect vc = null; in test2_1InsertSoundModification() local
440 vc = new AudioEffect( in test2_1InsertSoundModification()
445 vc.setEnabled(true); in test2_1InsertSoundModification()
493 if (vc != null) { in test2_1InsertSoundModification()
494 vc.release(); in test2_1InsertSoundModification()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/
DScreenMediaRecorder.java205 MediaCodecInfo.VideoCapabilities vc = capabilities.getVideoCapabilities(); in getSupportedSize() local
207 int width = vc.getSupportedWidths().getUpper(); in getSupportedSize()
208 int height = vc.getSupportedHeights().getUpper(); in getSupportedSize()
211 if (screenWidthAligned % vc.getWidthAlignment() != 0) { in getSupportedSize()
212 screenWidthAligned -= (screenWidthAligned % vc.getWidthAlignment()); in getSupportedSize()
215 if (screenHeightAligned % vc.getHeightAlignment() != 0) { in getSupportedSize()
216 screenHeightAligned -= (screenHeightAligned % vc.getHeightAlignment()); in getSupportedSize()
220 && vc.isSizeSupported(screenWidthAligned, screenHeightAligned)) { in getSupportedSize()
222 int maxRate = vc.getSupportedFrameRatesFor(screenWidthAligned, in getSupportedSize()
237 maxInfo = vc; in getSupportedSize()
/frameworks/base/media/jni/
Dandroid_media_MediaProfiles.cpp264 for (const MediaProfiles::VideoCodec *vc : cp->getVideoCodecs()) { in android_media_MediaProfiles_native_get_camcorder_profiles() local
267 vc->getCodec(), in android_media_MediaProfiles_native_get_camcorder_profiles()
268 vc->getFrameWidth(), in android_media_MediaProfiles_native_get_camcorder_profiles()
269 vc->getFrameHeight(), in android_media_MediaProfiles_native_get_camcorder_profiles()
270 vc->getFrameRate(), in android_media_MediaProfiles_native_get_camcorder_profiles()
271 vc->getBitrate(), in android_media_MediaProfiles_native_get_camcorder_profiles()
272 vc->getProfile()); in android_media_MediaProfiles_native_get_camcorder_profiles()
/frameworks/av/services/audiopolicy/engine/common/include/
DVolumeCurve.h163 sp<VolumeCurve> vc = getCurvesFor(deviceCat); in volIndexToDb() local
164 if (vc != 0) { in volIndexToDb()
165 return vc->volIndexToDb(indexInUi, mIndexMin, mIndexMax); in volIndexToDb()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/volume/
DUtil.java81 final String vc = volumeProviderControlToString(info.getVolumeControl()); in playbackInfoToString() local
83 info.getCurrentVolume(), info.getMaxVolume(), type, vc, info.getAudioAttributes()); in playbackInfoToString()
/frameworks/base/media/java/android/media/audiopolicy/
DAudioPolicy.java144 AudioPolicyVolumeCallback vc, @Nullable MediaProjection projection) { in AudioPolicy() argument
161 mVolCb = vc; in AudioPolicy()
275 public Builder setAudioPolicyVolumeCallback(@NonNull AudioPolicyVolumeCallback vc) { in setAudioPolicyVolumeCallback() argument
276 if (vc == null) { in setAudioPolicyVolumeCallback()
279 mVolCb = vc; in setAudioPolicyVolumeCallback()
/frameworks/av/media/extractors/flac/
DFLACExtractor.cpp372 const FLAC__StreamMetadata_VorbisComment *vc; in metadataCallback() local
373 vc = &metadata->data.vorbis_comment; in metadataCallback()
374 for (FLAC__uint32 i = 0; i < vc->num_comments; ++i) { in metadataCallback()
376 vce = &vc->comments[i]; in metadataCallback()
/frameworks/ex/widget/java/com/android/ex/widget/
DStaggeredGridView.java208 final ViewConfiguration vc = ViewConfiguration.get(context); in StaggeredGridView() local
209 mTouchSlop = vc.getScaledTouchSlop(); in StaggeredGridView()
210 mMaximumVelocity = vc.getScaledMaximumFlingVelocity(); in StaggeredGridView()
211 mFlingVelocity = vc.getScaledMinimumFlingVelocity(); in StaggeredGridView()
/frameworks/base/core/java/com/android/internal/widget/
DResolverDrawerLayout.java167 final ViewConfiguration vc = ViewConfiguration.get(context); in ResolverDrawerLayout() local
168 mTouchSlop = vc.getScaledTouchSlop(); in ResolverDrawerLayout()
169 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity(); in ResolverDrawerLayout()
DRecyclerView.java547 final ViewConfiguration vc = ViewConfiguration.get(context); in RecyclerView() local
548 mTouchSlop = vc.getScaledTouchSlop(); in RecyclerView()
549 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity(); in RecyclerView()
550 mMaxFlingVelocity = vc.getScaledMaximumFlingVelocity(); in RecyclerView()
926 final ViewConfiguration vc = ViewConfiguration.get(getContext()); in setScrollingTouchSlop() local
933 mTouchSlop = vc.getScaledTouchSlop(); in setScrollingTouchSlop()
937 mTouchSlop = vc.getScaledPagingTouchSlop(); in setScrollingTouchSlop()
/frameworks/av/media/codec2/components/vorbis/
DC2SoftVorbisDec.cpp33 int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb);
/frameworks/av/media/libstagefright/codecs/vorbis/dec/
DSoftVorbis.cpp34 int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb);
/frameworks/av/media/libmedia/
DMediaProfiles.cpp1182 for (const MediaProfiles::VideoCodec &vc : mVideoCodecs) { in getVideoCodecs() local
1183 res.push_back(&vc); in getVideoCodecs()
/frameworks/base/startop/scripts/trace_analyzer/test_fixtures/
Dcommon_systrace114 …<...>-3206 (-----) [001] d..2 14594.224167: sched_switch: prev_comm=aiai-vc-0 prev_pid=3206 prev_…
116 …droid.systemui prev_pid=1803 prev_prio=120 prev_state=S ==> next_comm=aiai-vc-0 next_pid=3206 next…
117 …<...>-3206 (-----) [001] d..2 14594.224433: sched_switch: prev_comm=aiai-vc-0 prev_pid=3206 prev_…
/frameworks/base/core/java/com/android/internal/widget/helper/
DItemTouchHelper.java468 ViewConfiguration vc = ViewConfiguration.get(mRecyclerView.getContext()); in setupCallbacks() local
469 mSlop = vc.getScaledTouchSlop(); in setupCallbacks()
/frameworks/av/media/extractors/ogg/
DOggExtractor.cpp42 int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb);
/frameworks/base/services/core/java/com/android/server/pm/
DSettings.java830 String secondaryCpuAbiString, String cpuAbiOverrideString, int uid, long vc, int
844 primaryCpuAbiString, secondaryCpuAbiString, cpuAbiOverrideString, vc, pkgFlags,