Searched defs:planes (Results 1 - 25 of 48) sorted by relevance

12

/external/chromium_org/third_party/skia/tests/
H A DImageGeneratorTest.cpp17 void* planes[3] = { NULL }; local
24 ig.getYUV8Planes(sizes, planes, NULL, NULL);
26 ig.getYUV8Planes(sizes, planes, rowBytes, NULL);
27 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace);
30 planes[0] = planes[1] = planes[2] = &dummy;
33 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace);
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios_centscreen.c77 void SDL_XBIOS_CentscreenSetmode(_THIS, int width, int height, int planes) argument
84 newmode.plan = planes;
/external/chromium_org/third_party/skia/src/core/
H A DSkImageGenerator.cpp60 bool SkImageGenerator::getYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3], argument
66 bool isValidWithPlanes = (planes) && (rowBytes) &&
67 ((planes[0]) && (planes[1]) && (planes[2]) &&
70 ((NULL == planes) ||
71 ((NULL == planes[0]) && (NULL == planes[1]) && (NULL == planes[2]))) &&
75 // Either we have all planes an
96 onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3]) argument
100 onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3], SkYUVColorSpace* colorSpace) argument
[all...]
H A DSkPixelRef.cpp256 bool SkPixelRef::onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3], argument
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DDecodingImageGenerator.cpp87 bool DecodingImageGenerator::onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3], SkYUVColorSpace* colorSpace) argument
92 if (!planes || !planes[0])
97 bool decoded = m_frameGenerator->decodeToYUV(sizes, planes, rowBytes);
H A DImageFrameGenerator.cpp152 bool ImageFrameGenerator::decodeToYUV(SkISize componentSizes[3], void* planes[3], size_t rowBytes[3]) argument
164 if (!planes || !planes[0] || !planes[1] || !planes[2]
182 OwnPtr<ImagePlanes> imagePlanes = adoptPtr(new ImagePlanes(planes, rowBytes));
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_phyuv.c49 int planes = 0; local
60 planes++;
63 planes++;
66 planes++;
68 return planes;
77 int planes; local
209 planes = grab_ptrs2(overlay->hwdata->channel, overlay->hwdata->FrameData0, overlay->hwdata->FrameData1);
218 /* check for the validness of all planes */
224 SDL_SetError("PgConfigScaler() returns all planes equal NULL\n");
246 overlay->planes
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/
H A DSDL_ps3yuv.c65 Uint8 * planes[3]; member in struct:private_yuvhwdata
174 overlay->pixels = hwdata->planes;
186 overlay->planes = 3;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_loopfilter.h116 struct macroblockd_plane planes[MAX_MB_PLANE],
122 struct macroblockd_plane planes[MAX_MB_PLANE]; member in struct:LoopFilterWorkerData
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_regions.h159 } planes[3]; member in struct:intel_image_format
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_regions.h159 } planes[3]; member in struct:intel_image_format
/external/opencv/cvaux/src/
H A Dcamshift.cpp86 uchar* planes[CV_MAX_DIM]; local
116 cvGetRawData( m_color_planes[i], &planes[i], &plane_step, &size );
132 planes[0][x] = (uchar)val0;
134 planes[1][x] = (uchar)val1;
136 planes[2][x] = (uchar)val2;
142 planes[0][x] = 0;
144 planes[1][x] = 0;
146 planes[2][x] = 0;
151 planes[i] += plane_step;
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysyuv.cc133 int planes; local
144 /* count planes */
145 planes = count_planes(format);
146 if (planes == 0)
151 if (planes == 3)
213 overlay->planes = planes;
214 overlay->pitches = (Uint16*)SDL_calloc(overlay->planes, sizeof(Uint16));
215 overlay->pixels = (Uint8**)SDL_calloc(overlay->planes, sizeof(Uint8*));
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
H A DSDL_DirectFB_yuv.c47 Uint8 *planes[3]; member in struct:private_yuvhwdata
192 overlay->pixels = hwdata->planes;
197 overlay->planes = 3;
200 overlay->planes = 1;
230 /* Add the two extra planes */
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
H A DSDL_dx5yuv.c45 Uint8 *planes[3]; member in struct:private_yuvhwdata
181 overlay->pixels = hwdata->planes;
185 overlay->planes = 3;
188 overlay->planes = 1;
227 /* Add the two extra planes */
/external/chromium_org/content/common/gpu/media/
H A Dv4l2_image_processor.cc492 struct v4l2_plane planes[VIDEO_MAX_PLANES]; local
496 memset(&planes, 0, sizeof(planes));
499 dqbuf.m.planes = planes;
523 memset(&planes, 0, sizeof(planes));
526 dqbuf.m.planes = planes;
600 qbuf.m.planes
[all...]
/external/chromium_org/media/base/
H A Dvideo_frame_unittest.cc102 int planes = VideoFrame::NumPlanes(format); local
103 for (int plane = 0; plane < planes; plane++) {
238 // planes if filled with kFillByte (defined in ExpectFrameExtents).
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
H A DImageDecoder.cpp215 ImagePlanes::ImagePlanes(void* planes[3], size_t rowBytes[3]) argument
218 m_planes[i] = planes[i];
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_dthread.c93 struct macroblockd_plane planes[MAX_MB_PLANE],
111 vp9_setup_dst_planes(planes, frame_buffer, mi_row, mi_col);
115 vp9_filter_block_plane(cm, &planes[plane], mi_row, &lfm);
128 loop_filter_rows_mt(lf_data->frame_buffer, lf_data->cm, lf_data->planes,
180 vp9_copy(lf_data->planes, pbi->mb.plane);
183 lf_data->y_only = y_only; // always do all planes in decoder
91 loop_filter_rows_mt(const YV12_BUFFER_CONFIG *const frame_buffer, VP9_COMMON *const cm, struct macroblockd_plane planes[MAX_MB_PLANE], int start, int stop, int y_only, VP9LfSync *const lf_sync, int num_lf_workers) argument
/external/chromium_org/third_party/skia/include/core/
H A DSkPixelRef.h224 * If any planes or rowBytes is NULL, this should output the sizes and return true
227 * If all planes and rowBytes are not NULL, then it should copy the associated Y,U,V data
228 * into those planes of memory supplied by the caller. It should validate that the sizes
234 bool getYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3], argument
236 return this->onGetYUV8Planes(sizes, planes, rowBytes, colorSpace);
326 virtual bool onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3],
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsyuv.c62 Uint8 *planes[3]; member in struct:private_yuvhwdata
150 overlay->pixels = hwdata->planes;
162 overlay->planes = 3;
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_test_utils.cc186 uint8 planes[2]; member in struct:__anon8449::BitmapInfoHeader
229 Set16BitValue(bih.planes, 1);
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Dmjpeg_decoder.cc242 uint8** planes, int dst_width, int dst_height) {
291 planes[i], GetComponentWidth(i),
293 planes[i] += scanlines_to_copy * GetComponentWidth(i);
309 planes[i], GetComponentWidth(i),
311 planes[i] += scanlines_to_copy * GetComponentWidth(i);
325 planes[i], GetComponentWidth(i),
327 planes[i] += scanlines_to_copy * GetComponentWidth(i);
241 DecodeToBuffers( uint8** planes, int dst_width, int dst_height) argument
/external/chromium_org/third_party/libyuv/source/
H A Dmjpeg_decoder.cc242 uint8** planes, int dst_width, int dst_height) {
291 planes[i], GetComponentWidth(i),
293 planes[i] += scanlines_to_copy * GetComponentWidth(i);
309 planes[i], GetComponentWidth(i),
311 planes[i] += scanlines_to_copy * GetComponentWidth(i);
325 planes[i], GetComponentWidth(i),
327 planes[i] += scanlines_to_copy * GetComponentWidth(i);
241 DecodeToBuffers( uint8** planes, int dst_width, int dst_height) argument
/external/libvpx/libvpx/vpx/
H A Dvpx_image.h127 unsigned char *planes[4]; /**< pointer to the top left pixel for each plane */ member in struct:vpx_image

Completed in 933 milliseconds

12