Home
last modified time | relevance | path

Searched refs:Coeffs (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
DLVREV_ApplyNewSettings.cpp72 FO_FLOAT_Coefs_t Coeffs; in LVREV_ApplyNewSettings() local
75 LVM_FO_HPF(Omega, &Coeffs); in LVREV_ApplyNewSettings()
77 Coeffs.A0, Coeffs.A1, 0.0, -(Coeffs.B1), 0.0}; in LVREV_ApplyNewSettings()
89 FO_FLOAT_Coefs_t Coeffs; in LVREV_ApplyNewSettings() local
91 Coeffs.A0 = 1; in LVREV_ApplyNewSettings()
92 Coeffs.A1 = 0; in LVREV_ApplyNewSettings()
93 Coeffs.B1 = 0; in LVREV_ApplyNewSettings()
101 LVM_FO_LPF(Omega, &Coeffs); in LVREV_ApplyNewSettings()
105 Coeffs.A0, Coeffs.A1, 0.0, -(Coeffs.B1), 0.0}; in LVREV_ApplyNewSettings()
209 FO_FLOAT_Coefs_t Coeffs; in LVREV_ApplyNewSettings() local
[all …]
/frameworks/av/media/libstagefright/include/media/stagefright/
DColorConverter.h55 struct Coeffs; // matrix coefficients
190 const struct Coeffs *getMatrix() const;
/frameworks/av/media/libstagefright/colorconversion/
DColorConverter.cpp360 struct ColorConverter::Coeffs { struct in android::ColorConverter
429 const struct ColorConverter::Coeffs BT601_FULL = { 256, 359, 88, 183, 454, 0 };
430 const struct ColorConverter::Coeffs BT601_LIMITED = { 298, 409, 100, 208, 516, 16 };
431 const struct ColorConverter::Coeffs BT601_LTD_10BIT = { 299, 410, 101, 209, 518, 16 };
438 const struct ColorConverter::Coeffs BT709_FULL = { 256, 403, 48, 120, 475, 0 };
439 const struct ColorConverter::Coeffs BT709_LIMITED = { 298, 459, 55, 136, 541, 16 };
440 const struct ColorConverter::Coeffs BT709_LTD_10BIT = { 299, 460, 55, 137, 542, 16 };
449 const struct ColorConverter::Coeffs BT2020_FULL = { 256, 377, 42, 146, 482, 0 };
450 const struct ColorConverter::Coeffs BT2020_LIMITED = { 298, 430, 48, 167, 548, 16 };
451 const struct ColorConverter::Coeffs BT2020_LTD_10BIT = { 299, 431, 48, 167, 550, 16 };
[all …]
/frameworks/av/media/codec2/components/base/
DSimpleC2Component.cpp203 struct Coeffs { struct
207 static const struct Coeffs GetCoeffsForAspects(const C2ColorAspectsStruct &aspects) { in GetCoeffsForAspects()
216 return Coeffs { 1024, 1436, 352, 731, 1815, 0 }; in GetCoeffsForAspects()
218 return Coeffs { 1196, 1639, 402, 835, 2072, 64 }; in GetCoeffsForAspects()
227 return Coeffs { 1024, 1613, 192, 479, 1900, 0 }; in GetCoeffsForAspects()
229 return Coeffs { 1196, 1841, 219, 547, 2169, 64 }; in GetCoeffsForAspects()
239 return Coeffs { 1024, 1510, 169, 585, 1927, 0 }; in GetCoeffsForAspects()
241 return Coeffs { 1196, 1724, 192, 668, 2200, 64 }; in GetCoeffsForAspects()
258 struct Coeffs coeffs = GetCoeffsForAspects(_aspects); in convertYUV420Planar16ToRGBA1010102()