Home | History | Annotate | Download | only in sandbox

Lines Matching defs:duration

122     // get the player duration
123 SLmillisecond duration;
124 result = (*playerPlay)->GetDuration(playerPlay, &duration);
126 if (SL_TIME_UNKNOWN == duration)
127 printf("Duration: unknown\n");
129 printf("Duration: %.1f\n", duration / 1000.0f);
146 // get the player duration
147 result = (*playerPlay)->GetDuration(playerPlay, &duration);
149 if (SL_TIME_UNKNOWN == duration)
150 printf("Duration: unknown\n");
152 printf("Duration: %.1f\n", duration / 1000.0f);