X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=adaptors%2Fcommon%2Fpixel-buffer-impl.h;h=1882909f96a92b452c99ea6ce22b8f40f7bdbd40;hb=29700e5d950c37672475098e30b946aadcdfb86b;hp=0cacb5691f0daf46ef4fd412745a25adf90bc748;hpb=436f00b5cba493989d23b2b7e54bc655e5b009f0;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/adaptors/common/pixel-buffer-impl.h b/adaptors/common/pixel-buffer-impl.h index 0cacb56..1882909 100644 --- a/adaptors/common/pixel-buffer-impl.h +++ b/adaptors/common/pixel-buffer-impl.h @@ -23,10 +23,6 @@ #include // For ImageDimensions #include #include -#include - -// EXTERNAL INCLUDES -#include namespace Dali { @@ -179,27 +175,6 @@ public: */ void Resize( ImageDimensions outDimensions ); - /** - * @brief Sets image metadata - * - * @param map Property map containing Exif fields - */ - void SetMetadata( const Property::Map& map ); - - /** - * @brief Returns image metadata as a property map - * @param[out] outMetadata Property map to copy the data into - * @return True on success - */ - bool GetMetadata(Property::Map& outMetadata) const; - - /** - * @brief Sets metadata property map for the pixel buffer - * @note The function takes over the ownership of the property map - * @param[in] metadata Property map to copy the data into - */ - void SetMetadata(std::unique_ptr metadata); - private: /* * Undefined copy constructor. @@ -256,12 +231,11 @@ private: private: - std::unique_ptr mMetadata; ///< Metadata fields - unsigned char* mBuffer; ///< The raw pixel data - unsigned int mBufferSize; ///< Buffer sized in bytes - unsigned int mWidth; ///< Buffer width in pixels - unsigned int mHeight; ///< Buffer height in pixels - Pixel::Format mPixelFormat; ///< Pixel format + unsigned char* mBuffer; ///< The raw pixel data + unsigned int mBufferSize; ///< Buffer sized in bytes + unsigned int mWidth; ///< Buffer width in pixels + unsigned int mHeight; ///< Buffer height in pixels + Pixel::Format mPixelFormat; ///< Pixel format }; } // namespace Adaptor