Lines Matching refs:srcId

59     virtual void notify(int64_t srcId, int msg, int ext1, int ext2,  in notify()  argument
63 player->notify(srcId, msg, ext1, ext2, obj); in notify()
303 status_t MediaPlayer2::getSrcId(int64_t *srcId) { in getSrcId() argument
304 if (srcId == NULL) { in getSrcId()
309 *srcId = mSrcId; in getSrcId()
384 status_t MediaPlayer2::playNextDataSource(int64_t srcId) { in playNextDataSource() argument
385 ALOGV("playNextDataSource srcId(%lld)", (long long)srcId); in playNextDataSource()
392 mSrcId = srcId; in playNextDataSource()
394 return mPlayer->playNextDataSource(srcId); in playNextDataSource()
716 status_t MediaPlayer2::getDuration(int64_t srcId, int64_t *msec) { in getDuration() argument
720 if (srcId != mSrcId) { in getDuration()
1001 void MediaPlayer2::notify(int64_t srcId, int msg, int ext1, int ext2, const PlayerMessage *obj) { in notify() argument
1003 (long long)srcId, msg, ext1, ext2); in notify()
1024 (long long)srcId, msg, ext1, ext2); in notify()
1033 ALOGV("MediaPlayer2::notify() prepared, srcId=%lld", (long long)srcId); in notify()
1034 if (srcId == mSrcId) { in notify()
1040 (long long)srcId, msg, ext1, ext2, obj); in notify()
1047 if (!mLoop && srcId == mSrcId) { in notify()
1064 if (ext1 == MEDIA2_INFO_DATA_SOURCE_START && srcId == mSrcId && mTransitionToNext) { in notify()
1117 listener->notify(srcId, msg, ext1, ext2, obj); in notify()
1124 int64_t srcId, const uint8_t uuid[16], const Vector<uint8_t>& drmSessionId) { in prepareDrm() argument
1138 ALOGW("prepareDrm(%lld) called in non-prepare state(%d)", (long long)srcId, mCurrentState); in prepareDrm()
1139 if (srcId == mSrcId) { in prepareDrm()
1150 status_t status = mPlayer->prepareDrm(srcId, uuid, drmSessionId); in prepareDrm()
1159 status_t MediaPlayer2::releaseDrm(int64_t srcId) { in releaseDrm() argument
1174 status_t status = mPlayer->releaseDrm(srcId); in releaseDrm()