Home
last modified time | relevance | path

Searched refs:InterpolatorType (Results 1 – 7 of 7) sorted by relevance

/aosp12/frameworks/av/include/media/
H A DInterpolator.h43 using InterpolatorType = media::InterpolatorType;
46 InterpolatorType interpolatorType = InterpolatorType::CUBIC,
79 case InterpolatorType::STEP: in findY()
81 case InterpolatorType::LINEAR: in findY()
84 case InterpolatorType::CUBIC: in findY()
85 case InterpolatorType::CUBIC_MONOTONIC: in findY()
193 InterpolatorType getInterpolatorType() const { in getInterpolatorType()
199 case InterpolatorType::STEP: // Not continuous in setInterpolatorType()
200 case InterpolatorType::LINEAR: // C0 in setInterpolatorType()
201 case InterpolatorType::CUBIC: // C1 in setInterpolatorType()
[all …]
H A DVolumeShaper.h129 using InterpolatorType = Interpolator<S, T>::InterpolatorType; variable
/aosp12/frameworks/av/aidl/android/media/
H A DInterpolatorConfig.aidl19 import android.media.InterpolatorType;
25 InterpolatorType type = InterpolatorType.CUBIC;
H A DInterpolatorType.aidl24 enum InterpolatorType { enum
/aosp12/frameworks/base/media/java/android/media/
H A DVolumeShaper.java283 public @interface InterpolatorType {} annotation in VolumeShaper.Configuration
565 private static @InterpolatorType
568 case android.media.InterpolatorType.STEP: in interpolatorTypeFromAidl()
570 case android.media.InterpolatorType.LINEAR: in interpolatorTypeFromAidl()
572 case android.media.InterpolatorType.CUBIC: in interpolatorTypeFromAidl()
581 private static @android.media.InterpolatorType
582 int interpolatorTypeToAidl(@InterpolatorType int type) { in interpolatorTypeToAidl()
585 return android.media.InterpolatorType.STEP; in interpolatorTypeToAidl()
589 return android.media.InterpolatorType.CUBIC; in interpolatorTypeToAidl()
679 @InterpolatorType int interpolatorType, in Configuration()
[all …]
/aosp12/frameworks/av/
H A DAndroid.bp46 "aidl/android/media/InterpolatorType.aidl",
/aosp12/frameworks/base/media/jni/
H A Dandroid_media_VolumeShaper.h121 (VolumeShaper::Configuration::InterpolatorType) in convertJobjectToConfiguration()