Home | History | Annotate | Download | only in examples

Lines Matching refs:sl

50 void TestPlayPathFromFD( SLObjectItf sl, const char* path, SLAint64 offset, SLAint64 size)
74 /* Get the SL Engine Interface which is implicit */
75 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
194 SLObjectItf sl;
212 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
215 /* Realizing the SL Engine in synchronous mode. */
216 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
221 TestPlayPathFromFD(sl, argv[1], (SLAint64)atoi(argv[2]),
224 TestPlayPathFromFD(sl, argv[1], (SLAint64)atoi(argv[2]), (SLAint64)atoi(argv[3]));
228 (*sl)->Destroy(sl);