diff options
author | Insun Kang <insun@google.com> | 2012-07-24 14:44:06 +0900 |
---|---|---|
committer | Insun Kang <insun@google.com> | 2012-08-02 11:56:07 +0900 |
commit | c9729ca1cb1760da836e293e3ed7a82f769f3e07 (patch) | |
tree | 7e080db5914465b3f739f68ae9a21cef94646c9f /include | |
parent | 6472badc497a9e748411f8c8c9ed5d83ef335a85 (diff) | |
download | frameworks_av-c9729ca1cb1760da836e293e3ed7a82f769f3e07.zip frameworks_av-c9729ca1cb1760da836e293e3ed7a82f769f3e07.tar.gz frameworks_av-c9729ca1cb1760da836e293e3ed7a82f769f3e07.tar.bz2 |
Unifying TimedTextDriver's resume() and start().
(cherry picked from gtv bb23a2b7e06c59f56e353fd4a2a66a9b8179d425)
Change-Id: If5f14549fa315c34e32d6fed7c1ea09deabceb63
Diffstat (limited to 'include')
-rw-r--r-- | include/media/stagefright/timedtext/TimedTextDriver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/stagefright/timedtext/TimedTextDriver.h b/include/media/stagefright/timedtext/TimedTextDriver.h index e705a04..f23c337 100644 --- a/include/media/stagefright/timedtext/TimedTextDriver.h +++ b/include/media/stagefright/timedtext/TimedTextDriver.h @@ -40,7 +40,6 @@ public: status_t start(); status_t pause(); - status_t resume(); status_t selectTrack(size_t index); status_t unselectTrack(size_t index); @@ -65,6 +64,7 @@ private: enum State { UNINITIALIZED, + PREPARED, PLAYING, PAUSED, }; |