Home
last modified time | relevance | path

Searched refs:src_frame (Results 1 – 14 of 14) sorted by relevance

/external/webrtc/webrtc/common_video/libyuv/
Dwebrtc_libyuv.cc156 int ConvertNV12ToRGB565(const uint8_t* src_frame, in ConvertNV12ToRGB565() argument
160 const uint8_t* yplane = src_frame; in ConvertNV12ToRGB565()
161 const uint8_t* uvInterlaced = src_frame + (width * abs_height); in ConvertNV12ToRGB565()
169 int ConvertRGB24ToARGB(const uint8_t* src_frame, uint8_t* dst_frame, in ConvertRGB24ToARGB() argument
173 return libyuv::RGB24ToARGB(src_frame, width, in ConvertRGB24ToARGB()
232 const uint8_t* src_frame, in ConvertToI420() argument
248 return libyuv::ConvertToI420(src_frame, sample_size, in ConvertToI420()
262 int ConvertFromI420(const VideoFrame& src_frame, in ConvertFromI420() argument
266 return libyuv::ConvertFromI420(src_frame.buffer(kYPlane), in ConvertFromI420()
267 src_frame.stride(kYPlane), in ConvertFromI420()
[all …]
Dscaler.cc50 int Scaler::Scale(const VideoFrame& src_frame, VideoFrame* dst_frame) { in Scale() argument
52 if (src_frame.IsZeroSize()) in Scale()
72 const uint8_t* y_ptr = src_frame.buffer(kYPlane) + in Scale()
73 src_offset_y * src_frame.stride(kYPlane) + in Scale()
75 const uint8_t* u_ptr = src_frame.buffer(kUPlane) + in Scale()
76 src_offset_y / 2 * src_frame.stride(kUPlane) + in Scale()
78 const uint8_t* v_ptr = src_frame.buffer(kVPlane) + in Scale()
79 src_offset_y / 2 * src_frame.stride(kVPlane) + in Scale()
83 src_frame.stride(kYPlane), in Scale()
85 src_frame.stride(kUPlane), in Scale()
[all …]
/external/webrtc/webrtc/voice_engine/
Dutility.cc24 void RemixAndResample(const AudioFrame& src_frame, in RemixAndResample() argument
27 RemixAndResample(src_frame.data_, src_frame.samples_per_channel_, in RemixAndResample()
28 src_frame.num_channels_, src_frame.sample_rate_hz_, in RemixAndResample()
30 dst_frame->timestamp_ = src_frame.timestamp_; in RemixAndResample()
31 dst_frame->elapsed_time_ms_ = src_frame.elapsed_time_ms_; in RemixAndResample()
32 dst_frame->ntp_time_ms_ = src_frame.ntp_time_ms_; in RemixAndResample()
Dutility.h34 void RemixAndResample(const AudioFrame& src_frame,
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_argb.h136 int BGRAToARGB(const uint8* src_frame, int src_stride_frame,
142 int ABGRToARGB(const uint8* src_frame, int src_stride_frame,
148 int RGBAToARGB(const uint8* src_frame, int src_stride_frame,
157 int RGB24ToARGB(const uint8* src_frame, int src_stride_frame,
163 int RAWToARGB(const uint8* src_frame, int src_stride_frame,
169 int RGB565ToARGB(const uint8* src_frame, int src_stride_frame,
175 int ARGB1555ToARGB(const uint8* src_frame, int src_stride_frame,
181 int ARGB4444ToARGB(const uint8* src_frame, int src_stride_frame,
218 int ConvertToARGB(const uint8* src_frame, size_t src_size,
Dconvert.h120 int ARGBToI420(const uint8* src_frame, int src_stride_frame,
128 int BGRAToI420(const uint8* src_frame, int src_stride_frame,
136 int ABGRToI420(const uint8* src_frame, int src_stride_frame,
144 int RGBAToI420(const uint8* src_frame, int src_stride_frame,
152 int RGB24ToI420(const uint8* src_frame, int src_stride_frame,
160 int RAWToI420(const uint8* src_frame, int src_stride_frame,
168 int RGB565ToI420(const uint8* src_frame, int src_stride_frame,
176 int ARGB1555ToI420(const uint8* src_frame, int src_stride_frame,
184 int ARGB4444ToI420(const uint8* src_frame, int src_stride_frame,
230 int ConvertToI420(const uint8* src_frame, size_t src_size,
/external/libyuv/files/include/libyuv/
Dconvert.h118 int ARGBToI420(const uint8* src_frame, int src_stride_frame,
126 int BGRAToI420(const uint8* src_frame, int src_stride_frame,
134 int ABGRToI420(const uint8* src_frame, int src_stride_frame,
142 int RGBAToI420(const uint8* src_frame, int src_stride_frame,
150 int RGB24ToI420(const uint8* src_frame, int src_stride_frame,
158 int RAWToI420(const uint8* src_frame, int src_stride_frame,
166 int RGB565ToI420(const uint8* src_frame, int src_stride_frame,
174 int ARGB1555ToI420(const uint8* src_frame, int src_stride_frame,
182 int ARGB4444ToI420(const uint8* src_frame, int src_stride_frame,
228 int ConvertToI420(const uint8* src_frame, size_t src_size,
Dconvert_argb.h216 int BGRAToARGB(const uint8* src_frame, int src_stride_frame,
222 int ABGRToARGB(const uint8* src_frame, int src_stride_frame,
228 int RGBAToARGB(const uint8* src_frame, int src_stride_frame,
237 int RGB24ToARGB(const uint8* src_frame, int src_stride_frame,
243 int RAWToARGB(const uint8* src_frame, int src_stride_frame,
249 int RGB565ToARGB(const uint8* src_frame, int src_stride_frame,
255 int ARGB1555ToARGB(const uint8* src_frame, int src_stride_frame,
261 int ARGB4444ToARGB(const uint8* src_frame, int src_stride_frame,
296 int ConvertToARGB(const uint8* src_frame, size_t src_size,
/external/webrtc/webrtc/common_video/libyuv/include/
Dwebrtc_libyuv.h110 const uint8_t* src_frame,
127 int ConvertFromI420(const VideoFrame& src_frame,
133 int ConvertFromYV12(const VideoFrame& src_frame,
142 int ConvertRGB24ToARGB(const uint8_t* src_frame,
146 int ConvertNV12ToRGB565(const uint8_t* src_frame,
Dscaler.h51 int Scale(const VideoFrame& src_frame, VideoFrame* dst_frame);
/external/webrtc/webrtc/modules/desktop_capture/
Ddesktop_frame.cc43 void DesktopFrame::CopyPixelsFrom(const DesktopFrame& src_frame, in CopyPixelsFrom() argument
46 assert(DesktopRect::MakeSize(src_frame.size()).ContainsRect( in CopyPixelsFrom()
49 CopyPixelsFrom(src_frame.GetFrameDataAtPos(src_pos), in CopyPixelsFrom()
50 src_frame.stride(), dest_rect); in CopyPixelsFrom()
Ddesktop_frame.h66 void CopyPixelsFrom(const DesktopFrame& src_frame,
/external/libyuv/files/docs/
Drotation.md7 int ConvertToI420(const uint8* src_frame, size_t src_size,
32 int ConvertToARGB(const uint8* src_frame, size_t src_size,
/external/webrtc/talk/media/base/
Dvideoframe_unittest.h1465 int (*RGBToI420)(const uint8_t* src_frame, in ConvertToBuffer() argument