Home | History | Annotate | Download | only in examples

Lines Matching defs:sl

50 void TestBassBoostPathFromFD(SLObjectItf sl, const char* path, int16_t boostStrength, bool alwaysOn)
79 /* Get the SL Engine Interface which is implicit */
80 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
252 SLObjectItf sl;
280 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
283 /* Realizing the SL Engine in synchronous mode. */
284 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
288 TestBassBoostPathFromFD(sl, argv[1], (int16_t)atoi(argv[2]), alwaysOn);
291 (*sl)->Destroy(sl);