diff options
| author | Steve Kondik <shade@chemlab.org> | 2013-02-12 22:30:27 -0800 | 
|---|---|---|
| committer | Steve Kondik <shade@chemlab.org> | 2013-02-12 22:30:27 -0800 | 
| commit | 001a7b82e04646682170d4b946529ebc0b956c16 (patch) | |
| tree | fb3784437f93380f21b6d69e9c819fc1305104da /include | |
| parent | d852697190e617c43930723bbb446375394b4194 (diff) | |
| parent | f0ff908da019a44115109f1b4d1b6864b35a8a29 (diff) | |
| download | frameworks_av-001a7b82e04646682170d4b946529ebc0b956c16.zip frameworks_av-001a7b82e04646682170d4b946529ebc0b956c16.tar.gz frameworks_av-001a7b82e04646682170d4b946529ebc0b956c16.tar.bz2  | |
Merge tag 'android-4.2.2_r1' of https://android.googlesource.com/platform/frameworks/av into 1.1
Android 4.2.2 release 1
Diffstat (limited to 'include')
| -rw-r--r-- | include/media/AudioBufferProvider.h | 12 | ||||
| -rw-r--r-- | include/media/IRemoteDisplay.h | 3 | ||||
| -rw-r--r-- | include/media/IStreamSource.h | 5 | ||||
| -rw-r--r-- | include/media/mediaplayer.h | 1 | ||||
| -rw-r--r-- | include/media/stagefright/ACodec.h | 1 | 
5 files changed, 20 insertions, 2 deletions
diff --git a/include/media/AudioBufferProvider.h b/include/media/AudioBufferProvider.h index 43e4de7..865ed7e 100644 --- a/include/media/AudioBufferProvider.h +++ b/include/media/AudioBufferProvider.h @@ -36,8 +36,11 @@ public:          size_t frameCount;      }; -    virtual ~AudioBufferProvider() {} +protected: +    AudioBufferProvider() : mValid(kValid) { } +    virtual ~AudioBufferProvider() { mValid = kDead; } +public:      // value representing an invalid presentation timestamp      static const int64_t kInvalidPTS = 0x7FFFFFFFFFFFFFFFLL;    // <stdint.h> is too painful @@ -47,6 +50,13 @@ public:      virtual status_t getNextBuffer(Buffer* buffer, int64_t pts = kInvalidPTS) = 0;      virtual void releaseBuffer(Buffer* buffer) = 0; + +    int getValid() const { return mValid; } +    static const int kValid = 'GOOD'; +    static const int kDead = 'DEAD'; + +private: +    int mValid;  };  // ---------------------------------------------------------------------------- diff --git a/include/media/IRemoteDisplay.h b/include/media/IRemoteDisplay.h index a61704e..c8baae9 100644 --- a/include/media/IRemoteDisplay.h +++ b/include/media/IRemoteDisplay.h @@ -39,6 +39,9 @@ class IRemoteDisplay : public IInterface  public:      DECLARE_META_INTERFACE(RemoteDisplay); +    virtual status_t pause() = 0; +    virtual status_t resume() = 0; +      // Disconnects the remote display and stops listening for new connections.      virtual status_t dispose() = 0;  }; diff --git a/include/media/IStreamSource.h b/include/media/IStreamSource.h index 61b9d5a..39e0a9e 100644 --- a/include/media/IStreamSource.h +++ b/include/media/IStreamSource.h @@ -73,6 +73,11 @@ struct IStreamListener : public IInterface {      // ATSParser::DiscontinuityType.      static const char *const kKeyDiscontinuityMask; +    // Optionally signalled as part of a discontinuity that includes +    // DISCONTINUITY_TIME. It indicates the media time (in us) to be associated +    // with the next PTS occuring in the stream. The value is of type int64_t. +    static const char *const kKeyMediaTimeUs; +      virtual void issueCommand(              Command cmd, bool synchronous, const sp<AMessage> &msg = NULL) = 0;  }; diff --git a/include/media/mediaplayer.h b/include/media/mediaplayer.h index f7cebc5..d753eba 100644 --- a/include/media/mediaplayer.h +++ b/include/media/mediaplayer.h @@ -249,7 +249,6 @@ private:      sp<MediaPlayerListener>     mListener;      void*                       mCookie;      media_player_states         mCurrentState; -    int                         mDuration;      int                         mCurrentPosition;      int                         mSeekPosition;      bool                        mPrepareSync; diff --git a/include/media/stagefright/ACodec.h b/include/media/stagefright/ACodec.h index 99548a0..b42a4ac 100644 --- a/include/media/stagefright/ACodec.h +++ b/include/media/stagefright/ACodec.h @@ -184,6 +184,7 @@ private:      bool mChannelMaskPresent;      int32_t mChannelMask; +    status_t setCyclicIntraMacroblockRefresh(const sp<AMessage> &msg, int32_t mode);      status_t allocateBuffersOnPort(OMX_U32 portIndex);      status_t freeBuffersOnPort(OMX_U32 portIndex);      status_t freeBuffer(OMX_U32 portIndex, size_t i);  | 
