Home
last modified time | relevance | path

Searched refs:plane_type (Results 1 – 7 of 7) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dtokenize.c386 int plane_type; in vp8_tokenize_mb() local
409 plane_type = 3; in vp8_tokenize_mb()
413 plane_type = 0; in vp8_tokenize_mb()
416 tokenize1st_order_b(x, t, plane_type, cpi); in vp8_tokenize_mb()
572 int plane_type; in vp8_stuff_mb() local
574 plane_type = 3; in vp8_stuff_mb()
580 plane_type = 0; in vp8_stuff_mb()
586 L + vp8_block2left[b], plane_type, cpi, x); in vp8_stuff_mb()
/external/webrtc/webrtc/common_video/libyuv/
Dlibyuv_unittest.cc47 PlaneType plane_type = static_cast<PlaneType>(plane_num); in PrintFrame() local
50 ret += PrintBuffer(frame->buffer(plane_type), width, height, in PrintFrame()
51 frame->stride(plane_type)); in PrintFrame()
67 PlaneType plane_type = static_cast<PlaneType>(plane_num); in CreateImage() local
68 uint8_t *data = frame->buffer(plane_type); in CreateImage()
73 data += frame->stride(plane_type); in CreateImage()
Dwebrtc_libyuv.cc113 PlaneType plane_type = static_cast<PlaneType>(planeNum); in PrintVideoFrame() local
114 const uint8_t* plane_buffer = frame.buffer(plane_type); in PrintVideoFrame()
120 plane_buffer += frame.stride(plane_type); in PrintVideoFrame()
/external/libvpx/libvpx/vp9/common/
Dvp9_blockd.h213 static INLINE TX_TYPE get_tx_type(PLANE_TYPE plane_type, in get_tx_type() argument
217 if (plane_type != PLANE_TYPE_Y || xd->lossless || is_inter_block(mbmi)) in get_tx_type()
223 static INLINE TX_TYPE get_tx_type_4x4(PLANE_TYPE plane_type, in get_tx_type_4x4() argument
227 if (plane_type != PLANE_TYPE_Y || xd->lossless || is_inter_block(&mi->mbmi)) in get_tx_type_4x4()
/external/webrtc/webrtc/modules/video_processing/test/
Dvideo_processing_unittest.cc383 webrtc::PlaneType plane_type = static_cast<webrtc::PlaneType>(plane); local
384 int allocated_size1 = frame1.allocated_size(plane_type);
385 int allocated_size2 = frame2.allocated_size(plane_type);
388 const uint8_t* plane_buffer1 = frame1.buffer(plane_type);
389 const uint8_t* plane_buffer2 = frame2.buffer(plane_type);
/external/webrtc/webrtc/modules/video_capture/test/
Dvideo_capture_unittest.cc77 webrtc::PlaneType plane_type = static_cast<webrtc::PlaneType>(plane); in CompareFrames() local
78 int allocated_size1 = frame1.allocated_size(plane_type); in CompareFrames()
79 int allocated_size2 = frame2.allocated_size(plane_type); in CompareFrames()
82 const uint8_t* plane_buffer1 = frame1.buffer(plane_type); in CompareFrames()
83 const uint8_t* plane_buffer2 = frame2.buffer(plane_type); in CompareFrames()
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
Dsimulcast_unittest.h237 PlaneType plane_type = static_cast<PlaneType>(plane_num); in CreateImage() local
238 uint8_t* data = frame->buffer(plane_type); in CreateImage()
242 memset(frame->buffer(plane_type), 0, frame->allocated_size(plane_type)); in CreateImage()
245 data += frame->stride(plane_type); in CreateImage()