Lines Matching refs:MediaPlayer

19 #define LOG_TAG "MediaPlayer"
47 MediaPlayer::MediaPlayer()
68 MediaPlayer::~MediaPlayer()
76 void MediaPlayer::disconnect()
92 void MediaPlayer::clear_l()
100 status_t MediaPlayer::setListener(const sp<MediaPlayerListener>& listener)
109 status_t MediaPlayer::attachNewPlayer(const sp<IMediaPlayer>& player)
140 status_t MediaPlayer::setDataSource(
158 status_t MediaPlayer::setDataSource(int fd, int64_t offset, int64_t length)
173 status_t MediaPlayer::setDataSource(const sp<IStreamSource> &source)
188 status_t MediaPlayer::invoke(const Parcel& request, Parcel *reply)
202 status_t MediaPlayer::setMetadataFilter(const Parcel& filter)
212 status_t MediaPlayer::getMetadata(bool update_only, bool apply_filter, Parcel *metadata)
222 status_t MediaPlayer::setVideoSurfaceTexture(
232 status_t MediaPlayer::prepareAsync_l()
247 status_t MediaPlayer::prepare()
272 status_t MediaPlayer::prepareAsync()
279 status_t MediaPlayer::start()
305 status_t MediaPlayer::stop()
324 status_t MediaPlayer::pause()
343 bool MediaPlayer::isPlaying()
360 status_t MediaPlayer::getVideoWidth(int *w)
369 status_t MediaPlayer::getVideoHeight(int *h)
378 status_t MediaPlayer::getCurrentPosition(int *msec)
393 status_t MediaPlayer::getDuration_l(int *msec)
409 status_t MediaPlayer::getDuration(int *msec)
415 status_t MediaPlayer::seekTo_l(int msec)
442 status_t MediaPlayer::seekTo(int msec)
452 status_t MediaPlayer::reset_l()
474 status_t MediaPlayer::reset()
481 status_t MediaPlayer::setAudioStreamType(int type)
483 LOGV("MediaPlayer::setAudioStreamType");
497 status_t MediaPlayer::setLooping(int loop)
499 LOGV("MediaPlayer::setLooping");
508 bool MediaPlayer::isLooping() {
518 status_t MediaPlayer::setVolume(float leftVolume, float rightVolume)
520 LOGV("MediaPlayer::setVolume(%f, %f)", leftVolume, rightVolume);
530 status_t MediaPlayer::setAudioSessionId(int sessionId)
532 LOGV("MediaPlayer::setAudioSessionId(%d)", sessionId);
549 int MediaPlayer::getAudioSessionId()
555 status_t MediaPlayer::setAuxEffectSendLevel(float level)
557 LOGV("MediaPlayer::setAuxEffectSendLevel(%f)", level);
566 status_t MediaPlayer::attachAuxEffect(int effectId)
568 LOGV("MediaPlayer::attachAuxEffect(%d)", effectId);
580 status_t MediaPlayer::setParameter(int key, const Parcel& request)
582 LOGV("MediaPlayer::setParameter(%d)", key);
591 status_t MediaPlayer::getParameter(int key, Parcel *reply)
593 LOGV("MediaPlayer::getParameter(%d)", key);
602 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj)
712 /*static*/ sp<IMemory> MediaPlayer::decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat)
726 void MediaPlayer::died()
732 /*static*/ sp<IMemory> MediaPlayer::decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat)