Home
last modified time | relevance | path

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

/external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/
DAltsHandshakerClientTest.java87 ByteBuffer outFrame = handshaker.startClientHandshake(); in startClientHandshakeSuccess() local
89 assertEquals(ByteString.copyFrom(outFrame), MockAltsHandshakerResp.getOutFrame()); in startClientHandshakeSuccess()
100 ByteBuffer outFrame = handshaker.startClientHandshake(); in startClientHandshakeWithOptions() local
101 assertEquals(ByteString.copyFrom(outFrame), MockAltsHandshakerResp.getOutFrame()); in startClientHandshakeWithOptions()
138 ByteBuffer outFrame = handshaker.startServerHandshake(inBytes); in startServerHandshakeSuccess() local
140 assertEquals(ByteString.copyFrom(outFrame), MockAltsHandshakerResp.getOutFrame()); in startServerHandshakeSuccess()
153 ByteBuffer outFrame = handshaker.startServerHandshake(inBytes); in startServerHandshakeEmptyOutFrame() local
155 assertEquals(0, outFrame.remaining()); in startServerHandshakeEmptyOutFrame()
169 ByteBuffer outFrame = handshaker.startServerHandshake(inBytes); in startServerHandshakeWithPrefixBuffer() local
171 assertEquals(ByteString.copyFrom(outFrame), MockAltsHandshakerResp.getOutFrame()); in startServerHandshakeWithPrefixBuffer()
[all …]
DAltsTsiFrameProtectorTest.java282 ByteBuf outFrame = in parseFrame_oneFrameNoFragment() local
289 outFrame.writeIntLE( in parseFrame_oneFrameNoFragment()
293 outFrame.writeIntLE(6); in parseFrame_oneFrameNoFragment()
295 ByteBuf frameOut = writeSlice(outFrame, payloadBytes + FakeChannelCrypter.getTagBytes()); in parseFrame_oneFrameNoFragment()
299 unprotector.unprotect(outFrame, out, alloc); in parseFrame_oneFrameNoFragment()
300 assertThat(outFrame.readableBytes()).isEqualTo(0); in parseFrame_oneFrameNoFragment()
320 ByteBuf outFrame = in parseFrame_twoFramesNoFragment() local
326 outFrame.writeIntLE( in parseFrame_twoFramesNoFragment()
330 outFrame.writeIntLE(6); in parseFrame_twoFramesNoFragment()
332 ByteBuf frameOut1 = writeSlice(outFrame, payloadBytes1 + FakeChannelCrypter.getTagBytes()); in parseFrame_twoFramesNoFragment()
[all …]
/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_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 …]
/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()