diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/media/stagefright/CameraSource.h | 4 | ||||
| -rw-r--r-- | include/media/stagefright/MediaCodecList.h | 5 | 
2 files changed, 7 insertions, 2 deletions
diff --git a/include/media/stagefright/CameraSource.h b/include/media/stagefright/CameraSource.h index 96dfd7e..069e897 100644 --- a/include/media/stagefright/CameraSource.h +++ b/include/media/stagefright/CameraSource.h @@ -83,7 +83,7 @@ public:                                            Size videoSize,                                            int32_t frameRate,                                            const sp<IGraphicBufferProducer>& surface, -                                          bool storeMetaDataInVideoBuffers = false); +                                          bool storeMetaDataInVideoBuffers = true);      virtual ~CameraSource(); @@ -149,6 +149,8 @@ protected:      int32_t  mNumInputBuffers;      int32_t  mVideoFrameRate;      int32_t  mColorFormat; +    int32_t  mEncoderFormat; +    int32_t  mEncoderDataSpace;      status_t mInitCheck;      sp<Camera>   mCamera; diff --git a/include/media/stagefright/MediaCodecList.h b/include/media/stagefright/MediaCodecList.h index df5e519..3aaa032 100644 --- a/include/media/stagefright/MediaCodecList.h +++ b/include/media/stagefright/MediaCodecList.h @@ -55,7 +55,10 @@ struct MediaCodecList : public BnMediaCodecList {      // to be used by MediaPlayerService alone      static sp<IMediaCodecList> getLocalInstance(); -    // only to be used in getLocalInstance +    // only to be used by getLocalInstance +    static void *profilerThreadWrapper(void * /*arg*/); + +    // only to be used by MediaPlayerService      void parseTopLevelXMLFile(const char *path, bool ignore_errors = false);  private:  | 
