Searched defs:yuv (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/tests/RenderScriptTests/LivePreview/src/com/android/rs/livepreview/
H A DRsYuv.java51 mScript = new ScriptC_yuv(mRS, res, R.raw.yuv);
70 void execute(byte[] yuv, Bitmap b) { argument
71 mAllocationIn.copyFrom(yuv);
/frameworks/base/graphics/java/android/graphics/
H A DYuvImage.java68 * @param yuv The YUV data. In the case of more than one image plane, all the planes must be
73 * @param strides (Optional) Row bytes of each image plane. If yuv contains padding, the stride
76 * @throws IllegalArgumentException if format is not support; width or height <= 0; or yuv is
79 public YuvImage(byte[] yuv, int format, int width, int height, int[] strides) { argument
92 if (yuv == null) {
93 throw new IllegalArgumentException("yuv cannot be null");
102 mData = yuv;
/frameworks/base/core/jni/android/graphics/
H A DYuvToJpegEncoder.cpp72 uint8_t* yuv, int* offsets) {
84 uint8_t* yPlanar = yuv + offsets[0];
85 uint8_t* vuPlanar = yuv + offsets[1]; //width * height;
148 uint8_t* yuv, int* offsets) {
164 uint8_t* yuvOffset = yuv + offsets[0];
190 void Yuv422IToJpegEncoder::deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t* uRows, argument
195 uint8_t* yuvSeg = yuv + (rowIndex + row) * fStrides[0];
223 jbyte* yuv = env->GetByteArrayElements(inYuv, NULL); local
232 encoder->encode(strm, yuv, width, height, imgOffsets, jpegQuality);
235 env->ReleaseByteArrayElements(inYuv, yuv,
71 compress(jpeg_compress_struct* cinfo, uint8_t* yuv, int* offsets) argument
147 compress(jpeg_compress_struct* cinfo, uint8_t* yuv, int* offsets) argument
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.cpp158 void *userData, int32_t index, uint8_t **yuv) {
161 return encoder->bindOutputBuffer(index, yuv);
941 int32_t SoftAVCEncoder::bindOutputBuffer(int32_t index, uint8_t **yuv) { argument
944 *yuv = (uint8_t *) mOutputBuffers[index]->data();
157 BindFrameWrapper( void *userData, int32_t index, uint8_t **yuv) argument
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp801 bool yuv; member in struct:attrib
877 if (fromAttrib->rgb && toAttrib->yuv) {
914 if (fromAttrib->yuv && toAttrib->rgb) {

Completed in 71 milliseconds