Home
last modified time | relevance | path

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

/frameworks/av/include/media/
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()
113 if (mInterpolatorType == InterpolatorType::CUBIC_MONOTONIC) { in findY()
193 InterpolatorType getInterpolatorType() const { in getInterpolatorType()
197 status_t setInterpolatorType(InterpolatorType interpolatorType) { in setInterpolatorType()
199 case InterpolatorType::STEP: // Not continuous in setInterpolatorType()
[all …]
DVolumeShaper.h129 using InterpolatorType = Interpolator<S, T>::InterpolatorType; variable
/frameworks/av/aidl/android/media/
DInterpolatorConfig.aidl19 import android.media.InterpolatorType;
25 InterpolatorType type = InterpolatorType.CUBIC;
DInterpolatorType.aidl24 enum InterpolatorType { enum
/frameworks/base/media/java/android/media/
DVolumeShaper.java283 public @interface InterpolatorType {} annotation in VolumeShaper.Configuration
565 private static @InterpolatorType
566 int interpolatorTypeFromAidl(@android.media.InterpolatorType int aidl) { in interpolatorTypeFromAidl()
568 case android.media.InterpolatorType.STEP: in interpolatorTypeFromAidl()
570 case android.media.InterpolatorType.LINEAR: in interpolatorTypeFromAidl()
572 case android.media.InterpolatorType.CUBIC: in interpolatorTypeFromAidl()
574 case android.media.InterpolatorType.CUBIC_MONOTONIC: in interpolatorTypeFromAidl()
581 private static @android.media.InterpolatorType
582 int interpolatorTypeToAidl(@InterpolatorType int type) { in interpolatorTypeToAidl()
585 return android.media.InterpolatorType.STEP; in interpolatorTypeToAidl()
[all …]
/frameworks/av/
DAndroid.bp46 "aidl/android/media/InterpolatorType.aidl",
/frameworks/base/media/jni/
Dandroid_media_VolumeShaper.h121 (VolumeShaper::Configuration::InterpolatorType) in convertJobjectToConfiguration()