Home
last modified time | relevance | path

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

/external/webrtc/audio/
Dremix_resample.cc21 void RemixAndResample(const AudioFrame& src_frame, in RemixAndResample() argument
24 RemixAndResample(src_frame.data(), src_frame.samples_per_channel_, in RemixAndResample()
25 src_frame.num_channels_, src_frame.sample_rate_hz_, in RemixAndResample()
27 dst_frame->timestamp_ = src_frame.timestamp_; in RemixAndResample()
28 dst_frame->elapsed_time_ms_ = src_frame.elapsed_time_ms_; in RemixAndResample()
29 dst_frame->ntp_time_ms_ = src_frame.ntp_time_ms_; in RemixAndResample()
30 dst_frame->packet_infos_ = src_frame.packet_infos_; in RemixAndResample()
Dremix_resample.h27 void RemixAndResample(const AudioFrame& src_frame,
/external/libaom/libaom/third_party/libyuv/include/libyuv/
Dconvert_argb.h137 int BGRAToARGB(const uint8* src_frame, int src_stride_frame,
143 int ABGRToARGB(const uint8* src_frame, int src_stride_frame,
149 int RGBAToARGB(const uint8* src_frame, int src_stride_frame,
158 int RGB24ToARGB(const uint8* src_frame, int src_stride_frame,
164 int RAWToARGB(const uint8* src_frame, int src_stride_frame,
170 int RGB565ToARGB(const uint8* src_frame, int src_stride_frame,
176 int ARGB1555ToARGB(const uint8* src_frame, int src_stride_frame,
182 int ARGB4444ToARGB(const uint8* src_frame, int src_stride_frame,
219 int ConvertToARGB(const uint8* src_frame, size_t src_size,
Dconvert.h121 int ARGBToI420(const uint8* src_frame, int src_stride_frame,
129 int BGRAToI420(const uint8* src_frame, int src_stride_frame,
137 int ABGRToI420(const uint8* src_frame, int src_stride_frame,
145 int RGBAToI420(const uint8* src_frame, int src_stride_frame,
153 int RGB24ToI420(const uint8* src_frame, int src_stride_frame,
161 int RAWToI420(const uint8* src_frame, int src_stride_frame,
169 int RGB565ToI420(const uint8* src_frame, int src_stride_frame,
177 int ARGB1555ToI420(const uint8* src_frame, int src_stride_frame,
185 int ARGB4444ToI420(const uint8* src_frame, int src_stride_frame,
231 int ConvertToI420(const uint8* src_frame, size_t src_size,
/external/webrtc/modules/desktop_capture/
Ddesktop_frame.cc54 void DesktopFrame::CopyPixelsFrom(const DesktopFrame& src_frame, in CopyPixelsFrom() argument
57 RTC_CHECK(DesktopRect::MakeSize(src_frame.size()) in CopyPixelsFrom()
61 CopyPixelsFrom(src_frame.GetFrameDataAtPos(src_pos), src_frame.stride(), in CopyPixelsFrom()
65 bool DesktopFrame::CopyIntersectingPixelsFrom(const DesktopFrame& src_frame, in CopyIntersectingPixelsFrom() argument
69 const DesktopVector& src_frame_origin = src_frame.top_left(); in CopyIntersectingPixelsFrom()
75 DesktopRect intersection_rect = src_frame.rect(); in CopyIntersectingPixelsFrom()
101 CopyPixelsFrom(src_frame, DesktopVector(src_pos_x, src_pos_y), in CopyIntersectingPixelsFrom()
Ddesktop_frame.h84 void CopyPixelsFrom(const DesktopFrame& src_frame,
94 bool CopyIntersectingPixelsFrom(const DesktopFrame& src_frame,
Ddesktop_frame_unittest.cc45 auto src_frame = CreateTestFrame(test.src_frame_rect, 0xff); in RunTest() local
48 *src_frame, test.horizontal_scale, test.vertical_scale); in RunTest()
/external/perfetto/src/trace_processor/importers/proto/
Dprofile_packet_utils.h52 SequenceStackProfileTracker::SourceFrame src_frame; in MakeSourceFrame() local
53 src_frame.name_id = entry.function_name_id(); in MakeSourceFrame()
54 src_frame.mapping_id = entry.mapping_id(); in MakeSourceFrame()
55 src_frame.rel_pc = entry.rel_pc(); in MakeSourceFrame()
56 return src_frame; in MakeSourceFrame()
Dproto_trace_parser.cc272 SequenceStackProfileTracker::SourceFrame src_frame = in ParseProfilePacket() local
275 entry.iid(), src_frame); in ParseProfilePacket()
/external/adhd/cras/src/server/
Dcras_mix_ops.c587 int32_t src_frame; in cras_mix_add_clip_s24_3le() local
592 convert_single_s243le_to_s32le(&src_frame, src); in cras_mix_add_clip_s24_3le()
593 sum = (int64_t)dst_frame + (int64_t)src_frame; in cras_mix_add_clip_s24_3le()
610 int32_t src_frame; in scale_add_clip_s24_3le() local
618 convert_single_s243le_to_s32le(&src_frame, src); in scale_add_clip_s24_3le()
619 sum = (int64_t)dst_frame + (int64_t)(src_frame * vol); in scale_add_clip_s24_3le()
734 int32_t src_frame; in cras_mix_add_scale_stride_s24_3le() local
738 convert_single_s243le_to_s32le(&src_frame, src); in cras_mix_add_scale_stride_s24_3le()
740 sum = (int64_t)dst_frame + (int64_t)src_frame * scaler; in cras_mix_add_scale_stride_s24_3le()
742 sum = (int64_t)dst_frame + (int64_t)src_frame; in cras_mix_add_scale_stride_s24_3le()
/external/tensorflow/tensorflow/core/graph/
Dgraph_partition.cc685 const Node* src_frame = OutputFrame(src, cf_info); in AddControlFlow() local
687 const string& src_frame_name = cf_info[src_frame->id()].frame_name; in AddControlFlow()
699 const string& curr_frame_name = cf_info[src_frame->id()].frame_name; in AddControlFlow()
708 AddControlFlowInfo(const_node, src_frame, &cf_info); in AddControlFlow()
734 status = AddControlLoop(opts, g, src_frame, edge, loop_cond, &cf_info, in AddControlFlow()
743 src_frame = cf_info[src_frame->id()].parent_frame; in AddControlFlow()
765 const Node* src_frame = OutputFrame(src, cf_info); in AddControlFlow() local
767 const string& src_frame_name = cf_info[src_frame->id()].frame_name; in AddControlFlow()
/external/webrtc/common_video/libyuv/
Dwebrtc_libyuv.cc165 int ConvertFromI420(const VideoFrame& src_frame, in ConvertFromI420() argument
170 src_frame.video_frame_buffer()->ToI420(); in ConvertFromI420()
174 dst_frame, dst_sample_size, src_frame.width(), src_frame.height(), in ConvertFromI420()
/external/webrtc/common_video/libyuv/include/
Dwebrtc_libyuv.h91 int ConvertFromI420(const VideoFrame& 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/adhd/cras/src/tests/
Dmix_unittest.cc973 int32_t src_frame = 0; in TestScaleStride() local
975 memcpy((uint8_t*)&src_frame + 1, src_buffer_ + 3 * i / 2, 3); in TestScaleStride()
978 tmp = (int64_t)dst_frame + (int64_t)src_frame * scaler; in TestScaleStride()
980 tmp = (int64_t)dst_frame + (int64_t)src_frame; in TestScaleStride()
/external/libaom/libaom/av1/encoder/
Dtpl_model.c679 const YV12_BUFFER_CONFIG *src_frame[7] = { NULL, NULL, NULL, NULL, in mc_flow_dispenser() local
707 src_frame[idx] = in mc_flow_dispenser()
769 tx_size, ref_frame, src_frame, &tpl_stats); in mc_flow_dispenser()