diff options
| author | Dan Stoza <stoza@google.com> | 2014-11-07 20:03:45 +0000 | 
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2014-11-07 20:03:45 +0000 | 
| commit | 048e913d58a59055af81dfa362db2c4ccf00f75a (patch) | |
| tree | c707c6ae0286b1dc4a10fb2b9e5f13046ca18c8b | |
| parent | 72e4a570f52c0a866d6952d0a1edd07d2c2194fc (diff) | |
| parent | f8d051fee37b1a0734e4142072d3053fed8df161 (diff) | |
| download | frameworks_av-048e913d58a59055af81dfa362db2c4ccf00f75a.zip frameworks_av-048e913d58a59055af81dfa362db2c4ccf00f75a.tar.gz frameworks_av-048e913d58a59055af81dfa362db2c4ccf00f75a.tar.bz2  | |
am f8d051fe: am 034d6747: am 1609e451: Merge "Add a BufferItem parameter to onFrameAvailable" into lmp-mr1-dev
* commit 'f8d051fee37b1a0734e4142072d3053fed8df161':
  Add a BufferItem parameter to onFrameAvailable
21 files changed, 22 insertions, 22 deletions
diff --git a/cmds/screenrecord/FrameOutput.cpp b/cmds/screenrecord/FrameOutput.cpp index 03e0062..bef74f5 100644 --- a/cmds/screenrecord/FrameOutput.cpp +++ b/cmds/screenrecord/FrameOutput.cpp @@ -206,7 +206,7 @@ void FrameOutput::reduceRgbaToRgb(uint8_t* buf, unsigned int pixelCount) {  }  // Callback; executes on arbitrary thread. -void FrameOutput::onFrameAvailable() { +void FrameOutput::onFrameAvailable(const BufferItem& /* item */) {      Mutex::Autolock _l(mMutex);      mFrameAvailable = true;      mEventCond.signal(); diff --git a/cmds/screenrecord/FrameOutput.h b/cmds/screenrecord/FrameOutput.h index c49ec3b..4c0c3be 100644 --- a/cmds/screenrecord/FrameOutput.h +++ b/cmds/screenrecord/FrameOutput.h @@ -62,7 +62,7 @@ private:      }      // (overrides GLConsumer::FrameAvailableListener method) -    virtual void onFrameAvailable(); +    virtual void onFrameAvailable(const BufferItem& item);      // Reduces RGBA to RGB, in place.      static void reduceRgbaToRgb(uint8_t* buf, unsigned int pixelCount); diff --git a/cmds/screenrecord/Overlay.cpp b/cmds/screenrecord/Overlay.cpp index 7fef53d..c659170 100644 --- a/cmds/screenrecord/Overlay.cpp +++ b/cmds/screenrecord/Overlay.cpp @@ -274,7 +274,7 @@ void Overlay::getTimeString_l(nsecs_t monotonicNsec, char* buf, size_t bufLen) {  }  // Callback; executes on arbitrary thread. -void Overlay::onFrameAvailable() { +void Overlay::onFrameAvailable(const BufferItem& /* item */) {      ALOGV("Overlay::onFrameAvailable");      Mutex::Autolock _l(mMutex);      mFrameAvailable = true; diff --git a/cmds/screenrecord/Overlay.h b/cmds/screenrecord/Overlay.h index b1b5c29..ee3444d 100644 --- a/cmds/screenrecord/Overlay.h +++ b/cmds/screenrecord/Overlay.h @@ -78,7 +78,7 @@ private:              const Program& texRender, TextRenderer& textRenderer);      // (overrides GLConsumer::FrameAvailableListener method) -    virtual void onFrameAvailable(); +    virtual void onFrameAvailable(const BufferItem& item);      // (overrides Thread method)      virtual bool threadLoop(); diff --git a/include/camera/ProCamera.h b/include/camera/ProCamera.h index 83a3028..e9b687a 100644 --- a/include/camera/ProCamera.h +++ b/include/camera/ProCamera.h @@ -265,7 +265,7 @@ private:          }      protected: -        virtual void onFrameAvailable() { +        virtual void onFrameAvailable(const BufferItem& /* item */) {              sp<ProCamera> c = mCamera.promote();              if (c.get() != NULL) {                  c->onFrameAvailable(mStreamId); diff --git a/include/media/stagefright/SurfaceMediaSource.h b/include/media/stagefright/SurfaceMediaSource.h index ffe4f4c..2177c00 100644 --- a/include/media/stagefright/SurfaceMediaSource.h +++ b/include/media/stagefright/SurfaceMediaSource.h @@ -126,7 +126,7 @@ protected:      // Implementation of the BufferQueue::ConsumerListener interface.  These      // calls are used to notify the Surface of asynchronous events in the      // BufferQueue. -    virtual void onFrameAvailable(); +    virtual void onFrameAvailable(const BufferItem& item);      // Used as a hook to BufferQueue::disconnect()      // This is called by the client side when it is done diff --git a/media/libstagefright/SurfaceMediaSource.cpp b/media/libstagefright/SurfaceMediaSource.cpp index 4e1c65c..530383b 100644 --- a/media/libstagefright/SurfaceMediaSource.cpp +++ b/media/libstagefright/SurfaceMediaSource.cpp @@ -448,7 +448,7 @@ void SurfaceMediaSource::signalBufferReturned(MediaBuffer *buffer) {  }  // Part of the BufferQueue::ConsumerListener -void SurfaceMediaSource::onFrameAvailable() { +void SurfaceMediaSource::onFrameAvailable(const BufferItem& /* item */) {      ALOGV("onFrameAvailable");      sp<FrameAvailableListener> listener; diff --git a/media/libstagefright/omx/GraphicBufferSource.cpp b/media/libstagefright/omx/GraphicBufferSource.cpp index 3e70956..44c7edc 100644 --- a/media/libstagefright/omx/GraphicBufferSource.cpp +++ b/media/libstagefright/omx/GraphicBufferSource.cpp @@ -750,7 +750,7 @@ int GraphicBufferSource::findMatchingCodecBuffer_l(  }  // BufferQueue::ConsumerListener callback -void GraphicBufferSource::onFrameAvailable() { +void GraphicBufferSource::onFrameAvailable(const BufferItem& /*item*/) {      Mutex::Autolock autoLock(mMutex);      ALOGV("onFrameAvailable exec=%d avail=%zu", diff --git a/media/libstagefright/omx/GraphicBufferSource.h b/media/libstagefright/omx/GraphicBufferSource.h index c0860ab..c8e3775 100644 --- a/media/libstagefright/omx/GraphicBufferSource.h +++ b/media/libstagefright/omx/GraphicBufferSource.h @@ -137,7 +137,7 @@ protected:      // into the codec buffer, and call Empty[This]Buffer.  If we're not yet      // executing or there's no codec buffer available, we just increment      // mNumFramesAvailable and return. -    virtual void onFrameAvailable(); +    virtual void onFrameAvailable(const BufferItem& item);      // BufferQueue::ConsumerListener interface, called when the client has      // released one or more GraphicBuffers.  We clear out the appropriate diff --git a/services/camera/libcameraservice/api1/client2/BurstCapture.cpp b/services/camera/libcameraservice/api1/client2/BurstCapture.cpp index 0bfdfd4..5502dcb 100644 --- a/services/camera/libcameraservice/api1/client2/BurstCapture.cpp +++ b/services/camera/libcameraservice/api1/client2/BurstCapture.cpp @@ -44,7 +44,7 @@ status_t BurstCapture::start(Vector<CameraMetadata> &/*metadatas*/,      return INVALID_OPERATION;  } -void BurstCapture::onFrameAvailable() { +void BurstCapture::onFrameAvailable(const BufferItem &/*item*/) {      ALOGV("%s", __FUNCTION__);      Mutex::Autolock l(mInputMutex);      if(!mInputChanged) { diff --git a/services/camera/libcameraservice/api1/client2/BurstCapture.h b/services/camera/libcameraservice/api1/client2/BurstCapture.h index ea321fd..c3b7722 100644 --- a/services/camera/libcameraservice/api1/client2/BurstCapture.h +++ b/services/camera/libcameraservice/api1/client2/BurstCapture.h @@ -39,7 +39,7 @@ public:      BurstCapture(wp<Camera2Client> client, wp<CaptureSequencer> sequencer);      virtual ~BurstCapture(); -    virtual void onFrameAvailable(); +    virtual void onFrameAvailable(const BufferItem& item);      virtual status_t start(Vector<CameraMetadata> &metadatas, int32_t firstCaptureId);  protected: diff --git a/services/camera/libcameraservice/api1/client2/CallbackProcessor.cpp b/services/camera/libcameraservice/api1/client2/CallbackProcessor.cpp index bf3318e..eadaa00 100644 --- a/services/camera/libcameraservice/api1/client2/CallbackProcessor.cpp +++ b/services/camera/libcameraservice/api1/client2/CallbackProcessor.cpp @@ -46,7 +46,7 @@ CallbackProcessor::~CallbackProcessor() {      deleteStream();  } -void CallbackProcessor::onFrameAvailable() { +void CallbackProcessor::onFrameAvailable(const BufferItem& /*item*/) {      Mutex::Autolock l(mInputMutex);      if (!mCallbackAvailable) {          mCallbackAvailable = true; diff --git a/services/camera/libcameraservice/api1/client2/CallbackProcessor.h b/services/camera/libcameraservice/api1/client2/CallbackProcessor.h index 613f5be..7fdc329 100644 --- a/services/camera/libcameraservice/api1/client2/CallbackProcessor.h +++ b/services/camera/libcameraservice/api1/client2/CallbackProcessor.h @@ -44,7 +44,7 @@ class CallbackProcessor:      CallbackProcessor(sp<Camera2Client> client);      ~CallbackProcessor(); -    void onFrameAvailable(); +    void onFrameAvailable(const BufferItem& item);      // Set to NULL to disable the direct-to-app callback window      status_t setCallbackWindow(sp<ANativeWindow> callbackWindow); diff --git a/services/camera/libcameraservice/api1/client2/JpegProcessor.cpp b/services/camera/libcameraservice/api1/client2/JpegProcessor.cpp index b433781..2772267 100644 --- a/services/camera/libcameraservice/api1/client2/JpegProcessor.cpp +++ b/services/camera/libcameraservice/api1/client2/JpegProcessor.cpp @@ -51,7 +51,7 @@ JpegProcessor::~JpegProcessor() {      deleteStream();  } -void JpegProcessor::onFrameAvailable() { +void JpegProcessor::onFrameAvailable(const BufferItem& /*item*/) {      Mutex::Autolock l(mInputMutex);      if (!mCaptureAvailable) {          mCaptureAvailable = true; diff --git a/services/camera/libcameraservice/api1/client2/JpegProcessor.h b/services/camera/libcameraservice/api1/client2/JpegProcessor.h index b2c05df..2040b30 100644 --- a/services/camera/libcameraservice/api1/client2/JpegProcessor.h +++ b/services/camera/libcameraservice/api1/client2/JpegProcessor.h @@ -47,7 +47,7 @@ class JpegProcessor:      ~JpegProcessor();      // CpuConsumer listener implementation -    void onFrameAvailable(); +    void onFrameAvailable(const BufferItem& item);      status_t updateStream(const Parameters ¶ms);      status_t deleteStream(); diff --git a/services/camera/libcameraservice/api1/client2/StreamingProcessor.cpp b/services/camera/libcameraservice/api1/client2/StreamingProcessor.cpp index 9e7fff8..470624b 100644 --- a/services/camera/libcameraservice/api1/client2/StreamingProcessor.cpp +++ b/services/camera/libcameraservice/api1/client2/StreamingProcessor.cpp @@ -635,7 +635,7 @@ status_t StreamingProcessor::incrementStreamingIds() {      return OK;  } -void StreamingProcessor::onFrameAvailable() { +void StreamingProcessor::onFrameAvailable(const BufferItem& /*item*/) {      ATRACE_CALL();      Mutex::Autolock l(mMutex);      if (!mRecordingFrameAvailable) { diff --git a/services/camera/libcameraservice/api1/client2/StreamingProcessor.h b/services/camera/libcameraservice/api1/client2/StreamingProcessor.h index 8466af4..1d679a4 100644 --- a/services/camera/libcameraservice/api1/client2/StreamingProcessor.h +++ b/services/camera/libcameraservice/api1/client2/StreamingProcessor.h @@ -80,7 +80,7 @@ class StreamingProcessor:      status_t incrementStreamingIds();      // Callback for new recording frames from HAL -    virtual void onFrameAvailable(); +    virtual void onFrameAvailable(const BufferItem& item);      // Callback from stagefright which returns used recording frames      void releaseRecordingFrame(const sp<IMemory>& mem); diff --git a/services/camera/libcameraservice/api1/client2/ZslProcessor.cpp b/services/camera/libcameraservice/api1/client2/ZslProcessor.cpp index 8f78103..8b7e4b4 100644 --- a/services/camera/libcameraservice/api1/client2/ZslProcessor.cpp +++ b/services/camera/libcameraservice/api1/client2/ZslProcessor.cpp @@ -66,7 +66,7 @@ ZslProcessor::~ZslProcessor() {      disconnect();  } -void ZslProcessor::onFrameAvailable() { +void ZslProcessor::onFrameAvailable(const BufferItem& /*item*/) {      Mutex::Autolock l(mInputMutex);      if (!mZslBufferAvailable) {          mZslBufferAvailable = true; diff --git a/services/camera/libcameraservice/api1/client2/ZslProcessor.h b/services/camera/libcameraservice/api1/client2/ZslProcessor.h index b6533cf..2099c38 100644 --- a/services/camera/libcameraservice/api1/client2/ZslProcessor.h +++ b/services/camera/libcameraservice/api1/client2/ZslProcessor.h @@ -53,7 +53,7 @@ class ZslProcessor:      ~ZslProcessor();      // From mZslConsumer -    virtual void onFrameAvailable(); +    virtual void onFrameAvailable(const BufferItem& item);      // From FrameProcessor      virtual void onResultAvailable(const CaptureResult &result); diff --git a/services/camera/libcameraservice/gui/RingBufferConsumer.cpp b/services/camera/libcameraservice/gui/RingBufferConsumer.cpp index f8562ec..d0f29de 100644 --- a/services/camera/libcameraservice/gui/RingBufferConsumer.cpp +++ b/services/camera/libcameraservice/gui/RingBufferConsumer.cpp @@ -268,7 +268,7 @@ status_t RingBufferConsumer::releaseOldestBufferLocked(size_t* pinnedFrames) {      return OK;  } -void RingBufferConsumer::onFrameAvailable() { +void RingBufferConsumer::onFrameAvailable(const android::BufferItem& item) {      status_t err;      { @@ -321,7 +321,7 @@ void RingBufferConsumer::onFrameAvailable() {          item.mGraphicBuffer = mSlots[item.mBuf].mGraphicBuffer;      } // end of mMutex lock -    ConsumerBase::onFrameAvailable(); +    ConsumerBase::onFrameAvailable(item);  }  void RingBufferConsumer::unpinBuffer(const BufferItem& item) { diff --git a/services/camera/libcameraservice/gui/RingBufferConsumer.h b/services/camera/libcameraservice/gui/RingBufferConsumer.h index da97a11..90fd734 100644 --- a/services/camera/libcameraservice/gui/RingBufferConsumer.h +++ b/services/camera/libcameraservice/gui/RingBufferConsumer.h @@ -165,7 +165,7 @@ class RingBufferConsumer : public ConsumerBase,    private:      // Override ConsumerBase::onFrameAvailable -    virtual void onFrameAvailable(); +    virtual void onFrameAvailable(const android::BufferItem& item);      void pinBufferLocked(const BufferItem& item);      void unpinBuffer(const BufferItem& item);  | 
