Home
last modified time | relevance | path

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

/frameworks/av/services/audiopolicy/engine/common/include/
DVolumeCurve.h35 struct CurvePoint struct
37 CurvePoint() {} in CurvePoint() argument
38 CurvePoint(int index, int attenuationInMb) : in CurvePoint() argument
44 inline bool operator< (const CurvePoint &lhs, const CurvePoint &rhs) argument
57 void add(const CurvePoint &point) { mCurvePoints.add(point); } in add()
67 SortedVector<CurvePoint> mCurvePoints;
/frameworks/av/services/audiopolicy/engine/config/include/
DEngineConfig.h49 struct CurvePoint { struct
53 using CurvePoints = std::vector<CurvePoint>; argument
/frameworks/av/services/audiopolicy/engine/common/src/
DVolumeCurve.cpp52 size_t indexInUiPosition = mCurvePoints.orderOf(CurvePoint(volIdx, 0)); in volIndexToDb()