summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/yuv
Commit message (Collapse)AuthorAgeFilesLines
* Fix warnings (now errors) in YUVImage.cppAndreas Huber2014-02-121-6/+6
| | | | | | related-to-build Change-Id: Ib29d78c4ca176fe66bfe5881f24127843b95c3f8
* warnings be gone.Andreas Huber2014-02-111-0/+2
| | | | Change-Id: Ie3bae3f037730e316d7fca12e7a3527973f752ef
* Add liblogYing Wang2013-04-091-1/+2
| | | | | Bug: 8580410 Change-Id: If493d87d60d71be664ad75b140c62acadb75b0d0
* Add NOTICE and MODULE_LICENSE_APACH2 to libs build under /frameworks/av/James Dong2012-06-132-0/+190
| | | | | Change-Id: I0a3af3e2abdedebd5934f3d941d01c32cfc75e26 related-to-bug: 6647465
* Move away from MediaDebug and use ADebug insteadJames Dong2012-02-102-2/+2
| | | | Change-Id: I963a3b6f79a7292891973cbeeaf3378b38629f08
* Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGESteve Block2012-01-081-4/+4
| | | | | | | See https://android-git.corp.google.com/g/#/c/157220 Bug: 5449033 Change-Id: Ic9c19d30693bd56755f55906127cd6bd7126096c
* frameworks/base: remove LOCAL_PRELINK_MODULEIliyan Malchev2011-03-141-1/+1
| | | | | Change-Id: I54dd62ebef47e7690afa5a858f3cad941b135481 Signed-off-by: Iliyan Malchev <malchev@google.com>
* Fix build.Ying Wang2010-12-291-0/+2
| | | | | | | Due to a bug (fixed by 59163bf2f15e28712be6598144ae0fdb94dac52b), libstagefright_yuv.so was actually not prelinked. Change-Id: Idbc9b968708d0fc31a087d2e4f24398072d915e2
* Added downsample()Nipun Kwatra2010-08-201-1/+29
| | | | | | | | Added a downsample function which downsamples the source image starting at an offset and skipping every few pixels. Currently no low pass filtering is done, but it should be added later. Change-Id: Iec34092c536bfc661a15521e6a1ef2ef3f815c61
* const correctness, validPixel test.Nipun Kwatra2010-08-191-0/+9
| | | | | | | | - made width(), height() const member functions. - added validPixel() which returns true if pixel is in the allowed range. - now testing validPixel in get/setPixelValue Change-Id: I1dee5060bd4f8dcbdcd542ec4647ea328f0185c3
* Adding YUVImage and YUVCanvas.Nipun Kwatra2010-07-293-0/+500
YUVImage is a container class to hold YUV data and provide various utilities, e.g. to set/get pixel values for different YUV formats, fast copying routines, etc. Currently supported YUV420 Planar and YUV420 Semi Planar. YUVCanvas holds a reference to a YUVImage on which it can do various drawing operations. Change-Id: I052a57b7fbc834efe1626914f76c04c091996cac