HomeSort by relevance Sort by last modified time
    Searched refs:PlaneType (Results 1 - 13 of 13) sorted by null

  /external/webrtc/webrtc/common_video/include/
video_frame_buffer.h 22 enum PlaneType {
43 virtual const uint8_t* data(PlaneType type) const = 0;
47 virtual uint8_t* MutableData(PlaneType type);
50 virtual int stride(PlaneType type) const = 0;
72 const uint8_t* data(PlaneType type) const override;
75 uint8_t* MutableData(PlaneType type) override;
76 int stride(PlaneType type) const override;
102 const uint8_t* data(PlaneType type) const override;
103 int stride(PlaneType type) const override;
126 const uint8_t* data(PlaneType type) const override
    [all...]
  /external/webrtc/webrtc/common_video/
i420_buffer_pool.cc 29 const uint8_t* data(webrtc::PlaneType type) const override {
32 uint8_t* MutableData(webrtc::PlaneType type) override {
38 int stride(webrtc::PlaneType type) const override {
video_frame_buffer.cc 21 uint8_t* VideoFrameBuffer::MutableData(PlaneType type) {
63 const uint8_t* I420Buffer::data(PlaneType type) const {
78 uint8_t* I420Buffer::MutableData(PlaneType type) {
84 int I420Buffer::stride(PlaneType type) const {
124 const uint8_t* NativeHandleBuffer::data(PlaneType type) const {
129 int NativeHandleBuffer::stride(PlaneType type) const {
170 const uint8_t* WrappedI420Buffer::data(PlaneType type) const {
184 int WrappedI420Buffer::stride(PlaneType type) const {
video_frame.cc 36 int ExpectedSize(int plane_stride, int image_height, PlaneType type) {
174 uint8_t* VideoFrame::buffer(PlaneType type) {
179 const uint8_t* VideoFrame::buffer(PlaneType type) const {
183 int VideoFrame::allocated_size(PlaneType type) const {
188 int VideoFrame::stride(PlaneType type) const {
i420_video_frame_unittest.cc 27 int ExpectedSize(int plane_stride, int image_height, PlaneType type);
  /external/webrtc/webrtc/
video_frame.h 89 uint8_t* buffer(PlaneType type);
91 const uint8_t* buffer(PlaneType type) const;
94 int allocated_size(PlaneType type) const;
97 int stride(PlaneType type) const;
  /external/webrtc/webrtc/test/
frame_generator.cc 203 int offset_y = (current_source_frame_->stride(PlaneType::kYPlane) *
206 int offset_u = (current_source_frame_->stride(PlaneType::kUPlane) *
209 int offset_v = (current_source_frame_->stride(PlaneType::kVPlane) *
214 &current_source_frame_->buffer(PlaneType::kYPlane)[offset_y],
215 &current_source_frame_->buffer(PlaneType::kUPlane)[offset_u],
216 &current_source_frame_->buffer(PlaneType::kVPlane)[offset_v],
218 current_source_frame_->stride(PlaneType::kYPlane),
219 current_source_frame_->stride(PlaneType::kUPlane),
220 current_source_frame_->stride(PlaneType::kVPlane));
frame_generator_unittest.cc 62 ASSERT_EQ(y_size, frame->allocated_size(PlaneType::kYPlane));
63 buffer = frame->buffer(PlaneType::kYPlane);
66 ASSERT_EQ(uv_size, frame->allocated_size(PlaneType::kUPlane));
67 buffer = frame->buffer(PlaneType::kUPlane);
70 ASSERT_EQ(uv_size, frame->allocated_size(PlaneType::kVPlane));
71 buffer = frame->buffer(PlaneType::kVPlane);
  /external/webrtc/webrtc/common_video/libyuv/
webrtc_libyuv.cc 113 PlaneType plane_type = static_cast<PlaneType>(planeNum);
145 static_cast<PlaneType>(plane));
149 plane_ptr += input_frame.stride(static_cast<PlaneType>(plane));
libyuv_unittest.cc 47 PlaneType plane_type = static_cast<PlaneType>(plane_num);
67 PlaneType plane_type = static_cast<PlaneType>(plane_num);
  /external/webrtc/webrtc/modules/video_processing/test/
video_processing_unittest.cc 383 webrtc::PlaneType plane_type = static_cast<webrtc::PlaneType>(plane);
  /external/webrtc/webrtc/modules/video_capture/test/
video_capture_unittest.cc 77 webrtc::PlaneType plane_type = static_cast<webrtc::PlaneType>(plane);
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
simulcast_unittest.h 237 PlaneType plane_type = static_cast<PlaneType>(plane_num);
    [all...]

Completed in 592 milliseconds