Home
last modified time | relevance | path

Searched refs:replaceId (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/include/media/
DVolumeShaper.h360 Operation(Flag flags, int replaceId) in Operation() argument
361 : Operation(flags, replaceId, std::numeric_limits<S>::quiet_NaN() /* xOffset */) { in Operation()
372 Operation(Flag flags, int replaceId, S xOffset) in Operation() argument
374 , mReplaceId(replaceId) in Operation()
382 void setReplaceId(int32_t replaceId) { in setReplaceId() argument
383 mReplaceId = replaceId; in setReplaceId()
787 const int replaceId = operation->getReplaceId(); in applyVolumeShaper() local
788 if (replaceId >= 0) { in applyVolumeShaper()
789 VS_LOG("replacing %d", replaceId); in applyVolumeShaper()
790 auto replaceIt = findId_l(replaceId); in applyVolumeShaper()
[all …]
/frameworks/base/media/jni/
Dandroid_media_VolumeShaper.h185 int replaceId = env->GetIntField(joperation, fields.opReplaceIdId); in convertJobjectToOperation() local
189 new VolumeShaper::Operation(flags, replaceId, xOffset); in convertJobjectToOperation()
/frameworks/base/media/java/android/media/
DVolumeShaper.java1186 final int replaceId = p.readInt();
1191 , replaceId
1202 private Operation(@Flag int flags, int replaceId, float xOffset) { in Operation() argument
1204 mReplaceId = replaceId; in Operation()