Home | History | Annotate | Download | only in libmediaplayerservice

Lines Matching full:msec

357     snprintf(buffer, 255, "  msec per frame(%f), latency (%d)\n",
1162 status_t MediaPlayerService::Client::getCurrentPosition(int *msec)
1167 status_t ret = p->getCurrentPosition(msec);
1169 ALOGV("[%d] getCurrentPosition = %d", mConnId, *msec);
1176 status_t MediaPlayerService::Client::getDuration(int *msec)
1181 status_t ret = p->getDuration(msec);
1183 ALOGV("[%d] getDuration = %d", mConnId, *msec);
1251 status_t MediaPlayerService::Client::seekTo(int msec, MediaPlayerSeekMode mode)
1253 ALOGV("[%d] seekTo(%d, %d)", mConnId, msec, mode);
1256 return p->seekTo(msec, mode);
1843 int32_t msec = 0;
1845 (void)mRecycledTrack->pendingDuration(&msec);
1848 ALOGD("deleting recycled track, waiting for data drain (%d msec)", msec);
1849 if (msec > 0) {
1851 if (msec > WAIT_LIMIT_MS) {
1852 msec = WAIT_LIMIT_MS;
1854 usleep(msec * 1000LL);