diff options
| author | Gloria Wang <gwang@google.com> | 2011-08-25 10:09:34 -0700 | 
|---|---|---|
| committer | Gloria Wang <gwang@google.com> | 2011-08-25 10:09:34 -0700 | 
| commit | 1a49a13f20a06c2b58b97ad311a90d8eb0956052 (patch) | |
| tree | 7539a13cc9f76ccbe2e96137a1a446f39eabb696 /media | |
| parent | 50bb96ca6d19846b20b8016cf020e6a3a80e495e (diff) | |
| download | frameworks_av-1a49a13f20a06c2b58b97ad311a90d8eb0956052.zip frameworks_av-1a49a13f20a06c2b58b97ad311a90d8eb0956052.tar.gz frameworks_av-1a49a13f20a06c2b58b97ad311a90d8eb0956052.tar.bz2  | |
Set mSeekNotificationSent as false for RTSP seeking.
Fix for bug 5208736.
Change-Id: Ib1d74608ec289509082d8dcad080769f48098853
Diffstat (limited to 'media')
| -rw-r--r-- | media/libstagefright/AwesomePlayer.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/media/libstagefright/AwesomePlayer.cpp b/media/libstagefright/AwesomePlayer.cpp index f2673b3..bc42a42 100644 --- a/media/libstagefright/AwesomePlayer.cpp +++ b/media/libstagefright/AwesomePlayer.cpp @@ -1318,6 +1318,7 @@ void AwesomePlayer::onRTSPSeekDone() {  status_t AwesomePlayer::seekTo_l(int64_t timeUs) {      if (mRTSPController != NULL) { +        mSeekNotificationSent = false;          mRTSPController->seekAsync(timeUs, OnRTSPSeekDoneWrapper, this);          return OK;      }  | 
