diff options
| author | 2011-08-25 10:28:50 -0700 | |
|---|---|---|
| committer | 2011-08-25 10:28:50 -0700 | |
| commit | 5837dfaf654f1f824d8cc4ef12188d5a27556aa3 (patch) | |
| tree | 213802881e79ac9b857c7195304299aa3fc5790f | |
| parent | 12bde60b39affbfdcb7ef6317e0a5f99c3f41b10 (diff) | |
| parent | 051f8908a3f6cb6f251f79267171b7a12597a98e (diff) | |
Merge "Set mSeekNotificationSent as false for RTSP seeking. Fix for bug 5208736."
| -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 f2673b33a867..bc42a422f4cf 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; } |