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.h34 struct CurvePoint struct
36 CurvePoint() {} in CurvePoint() argument
37 CurvePoint(int index, int attenuationInMb) : in CurvePoint() argument
43 inline bool operator< (const CurvePoint &lhs, const CurvePoint &rhs) argument
56 void add(const CurvePoint &point) { mCurvePoints.add(point); } in add()
66 SortedVector<CurvePoint> mCurvePoints;
/frameworks/av/services/audiopolicy/engine/config/include/
DEngineConfig.h46 struct CurvePoint { struct
50 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()