Home
last modified time | relevance | path

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

/frameworks/av/include/media/
DVolumeShaper.h361 Operation(Flag flags, int replaceId) in Operation() argument
362 : Operation(flags, replaceId, std::numeric_limits<S>::quiet_NaN() /* xOffset */) { in Operation()
373 Operation(Flag flags, int replaceId, S xOffset) in Operation() argument
375 , mReplaceId(replaceId) in Operation()
383 void setReplaceId(int32_t replaceId) { in setReplaceId() argument
384 mReplaceId = replaceId; in setReplaceId()
788 const int replaceId = operation->getReplaceId(); in applyVolumeShaper() local
789 if (replaceId >= 0) { in applyVolumeShaper()
790 VS_LOG("replacing %d", replaceId); in applyVolumeShaper()
791 auto replaceIt = findId_l(replaceId); in applyVolumeShaper()
[all …]
/frameworks/base/media/jni/
Dandroid_media_VolumeShaper.h183 int replaceId = env->GetIntField(joperation, fields.opReplaceIdId); in convertJobjectToOperation() local
187 new VolumeShaper::Operation(flags, replaceId, xOffset); in convertJobjectToOperation()
/frameworks/base/media/java/android/media/
DVolumeShaper.java1173 final int replaceId = p.readInt();
1178 , replaceId
1188 private Operation(@Flag int flags, int replaceId, float xOffset) { in Operation() argument
1190 mReplaceId = replaceId; in Operation()