Home
last modified time | relevance | path

Searched refs:outFrame (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/webrtc/modules/video_processing/
Dspatial_resampler.cc49 VideoFrame* outFrame) { in ResampleFrame() argument
68 ret_val = scaler_.Scale(inFrame, outFrame); in ResampleFrame()
72 outFrame->set_timestamp(inFrame.timestamp()); in ResampleFrame()
73 outFrame->set_render_time_ms(inFrame.render_time_ms()); in ResampleFrame()
Dspatial_resampler.h32 VideoFrame* outFrame) = 0;
46 VideoFrame* outFrame);
/external/webrtc/webrtc/modules/audio_processing/ns/
Dnoise_suppression_x.c43 short* const* outFrame) { in WebRtcNsx_Process() argument
45 num_bands, outFrame); in WebRtcNsx_Process()
Dnoise_suppression_x.h82 short* const* outFrame);
Dns_core.h185 float* const* outFrame);
Dnsx_core.c1420 void WebRtcNsx_DataSynthesis(NoiseSuppressionFixedC* inst, short* outFrame) { in WebRtcNsx_DataSynthesis() argument
1442 outFrame[i] = inst->synthesisBuffer[i]; // Q0 in WebRtcNsx_DataSynthesis()
1497 WebRtcNsx_SynthesisUpdate(inst, outFrame, gainFactor); in WebRtcNsx_DataSynthesis()
1503 short* const* outFrame) { in WebRtcNsx_ProcessCore() argument
1566 outFrameHB = &outFrame[1]; in WebRtcNsx_ProcessCore()
1574 WebRtcNsx_DataSynthesis(inst, outFrame[0]); in WebRtcNsx_ProcessCore()
2029 WebRtcNsx_DataSynthesis(inst, outFrame[0]); in WebRtcNsx_ProcessCore()
Dnsx_core.h168 short* const* outFrame);
Dns_core.c1187 float* const* outFrame) { in WebRtcNs_ProcessCore() argument
1217 outFrameHB = &outFrame[1]; in WebRtcNs_ProcessCore()
1250 outFrame[0][i] = in WebRtcNs_ProcessCore()
1359 outFrame[0][i] = in WebRtcNs_ProcessCore()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Disac.c1025 float outFrame[MAX_FRAMESAMPLES]; in Decode() local
1076 outFrame, decInstLB, in Decode()
1104 if (outFrame[k] > 32767) { in Decode()
1106 } else if (outFrame[k] < -32768) { in Decode()
1109 decoded[k] = (int16_t)WebRtcIsac_lrint(outFrame[k]); in Decode()
1118 if (outFrame[k] > 32767) { in Decode()
1120 } else if (outFrame[k] < -32768) { in Decode()
1123 outFrameLB[k] = (int16_t)WebRtcIsac_lrint(outFrame[k]); in Decode()
1221 &instISAC->transform_tables, outFrame, decInstUB, isRCUPayload); in Decode()
1228 memset(outFrame, 0, MAX_FRAMESAMPLES * in Decode()
[all …]