Lines Matching full:msec
918 mRecentSeek = command->msec();
928 begin.iPosValue.millisec_value = command->msec();
1708 status_t PVPlayer::getCurrentPosition(int *msec)
1710 return mPlayerDriver->enqueueCommand(new PlayerGetPosition(msec,0,0));
1713 status_t PVPlayer::getDuration(int *msec)
1715 status_t ret = mPlayerDriver->enqueueCommand(new PlayerGetDuration(msec,0,0));
1716 if (ret == NO_ERROR) mDuration = *msec;
1720 status_t PVPlayer::seekTo(int msec)
1722 LOGV("seekTo(%d)", msec);
1724 if ((msec == mDuration) && (mDuration > 0)) {
1725 msec--;
1726 LOGV("Seek adjusted 1 msec from end");
1728 return mPlayerDriver->enqueueCommand(new PlayerSeek(msec,do_nothing,0));