Home
last modified time | relevance | path

Searched refs:y_width (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/gil/extension/toolbox/image_types/
Dsubchroma_image.hpp383 subchroma_image( const x_coord_t y_width in subchroma_image() argument
386 : _y_plane( y_width, y_height, 0, Allocator() ) in subchroma_image()
387 , _v_plane( y_width / parent_t::ss_X, y_height / parent_t::ss_Y, 0, Allocator() ) in subchroma_image()
388 , _u_plane( y_width / parent_t::ss_X, y_height / parent_t::ss_Y, 0, Allocator() ) in subchroma_image()
508 >::view_t subchroma_view( std::size_t y_width in subchroma_view() argument
523 unsigned char* u_base = y_base + ( y_width * y_height * y_channel_size ); in subchroma_view()
524 unsigned char* v_base = u_base + ( y_width / scaling_factors_t::ss_X ) in subchroma_view()
530 plane_view_t y_plane = interleaved_view( y_width in subchroma_view()
533 , y_width // rowsize_in_bytes in subchroma_view()
536 plane_view_t v_plane = interleaved_view( y_width / scaling_factors_t::ss_X in subchroma_view()
[all …]
/third_party/boost/libs/gil/test/extension/toolbox/
Dsubchroma_image.cpp83 std::size_t const y_width = 320; in test_subchroma_image() local
86 std::size_t image_size = (y_width * y_height) in test_subchroma_image()
87 + (y_width / image_t::ss_X) * (y_height / image_t::ss_Y) in test_subchroma_image()
88 + (y_width / image_t::ss_X) * (y_height / image_t::ss_Y); in test_subchroma_image()
92 … image_t::view_t v = gil::subchroma_view<pixel_t, factors_t>(y_width, y_height, &data.front()); in test_subchroma_image()