Home | History | Annotate | Download | only in examples

Lines Matching defs:sl

71 void TestPlayPathFromFD( SLObjectItf sl, const char* path, SLAint64 offset, SLAint64 size)
95 /* Get the SL Engine Interface which is implicit */
96 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
225 SLObjectItf sl;
243 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
246 /* Realizing the SL Engine in synchronous mode. */
247 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
252 TestPlayPathFromFD(sl, argv[1], (SLAint64)atoi(argv[2]),
255 TestPlayPathFromFD(sl, argv[1], (SLAint64)atoi(argv[2]), (SLAint64)atoi(argv[3]));
259 (*sl)->Destroy(sl);