am 4da48ec8: Merge "Notify the playback status to DRM agents before the playback starts"

* commit '4da48ec88338af2df6f9abba850fb4c65918bb82':
  Notify the playback status to DRM agents before the playback starts
This commit is contained in:
Gloria Wang
2010-11-22 21:26:13 -08:00
committed by Android Git Automerger

View File

@@ -762,6 +762,13 @@ status_t AwesomePlayer::play_l() {
bool deferredAudioSeek = false; bool deferredAudioSeek = false;
if (mDecryptHandle != NULL) {
int64_t position;
getPosition(&position);
mDrmManagerClient->setPlaybackStatus(mDecryptHandle,
Playback::START, position / 1000);
}
if (mAudioSource != NULL) { if (mAudioSource != NULL) {
if (mAudioPlayer == NULL) { if (mAudioPlayer == NULL) {
if (mAudioSink != NULL) { if (mAudioSink != NULL) {
@@ -779,6 +786,11 @@ status_t AwesomePlayer::play_l() {
mFlags &= ~(PLAYING | FIRST_FRAME); mFlags &= ~(PLAYING | FIRST_FRAME);
if (mDecryptHandle != NULL) {
mDrmManagerClient->setPlaybackStatus(mDecryptHandle,
Playback::STOP, 0);
}
return err; return err;
} }
@@ -815,13 +827,6 @@ status_t AwesomePlayer::play_l() {
seekTo_l(0); seekTo_l(0);
} }
if (mDecryptHandle != NULL) {
int64_t position;
getPosition(&position);
mDrmManagerClient->setPlaybackStatus(mDecryptHandle,
Playback::START, position / 1000);
}
return OK; return OK;
} }