Lines Matching refs:msec
474 status_t NuPlayerDriver::seekTo(int msec, MediaPlayerSeekMode mode) { in seekTo() argument
475 ALOGV("seekTo(%p) (%d ms, %d) at state %d", this, msec, mode, mState); in seekTo()
478 int64_t seekTimeUs = msec * 1000LL; in seekTo()
502 status_t NuPlayerDriver::getCurrentPosition(int *msec) { in getCurrentPosition() argument
508 *msec = (int)divRound(tempUs, (int64_t)(1000)); in getCurrentPosition()
524 *msec = (int)divRound(tempUs, (int64_t)(1000)); in getCurrentPosition()
528 status_t NuPlayerDriver::getDuration(int *msec) { in getDuration() argument
535 *msec = (mDurationUs + 500LL) / 1000; in getDuration()
745 int msec = 0; in invoke() local
747 getCurrentPosition(&msec); in invoke()
748 return mPlayer->selectTrack(trackIndex, true /* select */, msec * 1000LL); in invoke()