Searched refs:outFrame (Results 1 – 9 of 9) sorted by relevance
/external/webrtc/webrtc/modules/video_processing/ |
D | spatial_resampler.cc | 49 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()
|
D | spatial_resampler.h | 32 VideoFrame* outFrame) = 0; 46 VideoFrame* outFrame);
|
/external/webrtc/webrtc/modules/audio_processing/ns/ |
D | noise_suppression_x.c | 43 short* const* outFrame) { in WebRtcNsx_Process() argument 45 num_bands, outFrame); in WebRtcNsx_Process()
|
D | noise_suppression_x.h | 82 short* const* outFrame);
|
D | ns_core.h | 185 float* const* outFrame);
|
D | nsx_core.c | 1420 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()
|
D | nsx_core.h | 168 short* const* outFrame);
|
D | ns_core.c | 1187 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/ |
D | isac.c | 1025 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 …]
|