Searched defs:rtp (Results 1 - 23 of 23) sorted by relevance

/external/skia/include/private/
H A DGrInstancedPipelineInfo.h18 GrInstancedPipelineInfo(const GrRenderTargetProxy* rtp) argument
19 : fIsMultisampled(GrFSAAType::kNone != rtp->fsaaType())
20 , fIsMixedSampled(GrFSAAType::kMixedSamples == rtp->fsaaType())
21 , fIsRenderingToFloat(GrPixelConfigIsFloatingPoint(rtp->config())) {}
/external/skia/src/gpu/
H A DGrPathRenderingRenderTargetContext.h26 sk_sp<GrRenderTargetProxy> rtp,
30 : INHERITED(ctx, mgr, std::move(rtp), std::move(colorSpace), surfaceProps, at, so) {}
25 GrPathRenderingRenderTargetContext(GrContext* ctx, GrDrawingManager* mgr, sk_sp<GrRenderTargetProxy> rtp, sk_sp<SkColorSpace> colorSpace, const SkSurfaceProps* surfaceProps, GrAuditTrail* at, GrSingleOwner* so) argument
H A DGrDrawingManager.cpp231 sk_sp<GrRenderTargetOpList> GrDrawingManager::newRTOpList(GrRenderTargetProxy* rtp, argument
242 sk_sp<GrRenderTargetOpList> opList(new GrRenderTargetOpList(rtp,
245 SkASSERT(rtp->getLastOpList() == opList.get());
330 sk_sp<GrRenderTargetProxy> rtp(sk_ref_sp(sProxy->asRenderTargetProxy()));
338 GrFSAAType::kNone != rtp->fsaaType()) {
340 if (!rtp->instantiate(fContext->resourceProvider())) {
343 GrRenderTarget* rt = rtp->priv().peekRenderTarget();
348 fContext, this, std::move(rtp),
354 return sk_sp<GrRenderTargetContext>(new GrRenderTargetContext(fContext, this, std::move(rtp),
H A DGrContext.cpp824 sk_sp<GrTextureProxy> rtp = GrSurfaceProxy::MakeDeferred(this->resourceProvider(), local
826 if (!rtp) {
831 fDrawingManager->makeRenderTargetContext(std::move(rtp),
H A DGrRenderTargetContext.cpp107 sk_sp<GrRenderTargetProxy> rtp,
114 , fRenderTargetProxy(std::move(rtp))
105 GrRenderTargetContext(GrContext* context, GrDrawingManager* drawingMgr, sk_sp<GrRenderTargetProxy> rtp, sk_sp<SkColorSpace> colorSpace, const SkSurfaceProps* surfaceProps, GrAuditTrail* auditTrail, GrSingleOwner* singleOwner, bool managedOpList) argument
/external/webrtc/webrtc/video/
H A Dvie_remb_unittest.cc47 MockRtpRtcp rtp; local
48 vie_remb_->AddReceiveChannel(&rtp);
49 vie_remb_->AddRembSender(&rtp);
58 EXPECT_CALL(rtp, SetREMBData(bitrate_estimate, ssrcs))
63 EXPECT_CALL(rtp, SetREMBData(bitrate_estimate - 100, ssrcs))
67 vie_remb_->RemoveReceiveChannel(&rtp);
68 vie_remb_->RemoveRembSender(&rtp);
72 MockRtpRtcp rtp; local
73 vie_remb_->AddReceiveChannel(&rtp);
74 vie_remb_->AddRembSender(&rtp);
200 MockRtpRtcp rtp; local
231 MockRtpRtcp rtp; local
[all...]
H A Dpayload_router_unittest.cc37 MockRtpRtcp rtp; local
38 std::list<RtpRtcp*> modules(1, &rtp);
46 EXPECT_CALL(rtp, SendOutgoingData(frame_type, payload_type, 0, 0, _, 1, NULL,
53 EXPECT_CALL(rtp, SendOutgoingData(frame_type, payload_type, 0, 0, _, 1, NULL,
60 EXPECT_CALL(rtp, SendOutgoingData(frame_type, payload_type, 0, 0, _, 1, NULL,
67 EXPECT_CALL(rtp, SendOutgoingData(frame_type, payload_type, 0, 0, _, 1, NULL,
75 EXPECT_CALL(rtp, SendOutgoingData(frame_type, payload_type, 0, 0, _, 1, NULL,
H A Dvie_channel.cc236 StreamDataCounters rtp; local
238 GetSendStreamDataCounters(&rtp, &rtx);
239 StreamDataCounters rtp_rtx = rtp;
251 static_cast<int>(rtp.MediaPayloadBytes() * 8 / elapsed_sec / 1000));
301 StreamDataCounters rtp; local
303 GetReceiveStreamDataCounters(&rtp, &rtx);
304 StreamDataCounters rtp_rtx = rtp;
314 static_cast<int>(rtp.MediaPayloadBytes() * 8 / elapsed_sec / 1000));
/external/webrtc/talk/media/webrtc/
H A Dwebrtcvoe.h102 webrtc::VoERTP_RTCP* rtp,
110 rtp_(rtp),
120 webrtc::VoERTP_RTCP* rtp() const { return rtp_.get(); } function in class:cricket::VoEWrapper
97 VoEWrapper(webrtc::VoEAudioProcessing* processing, webrtc::VoEBase* base, webrtc::VoECodec* codec, webrtc::VoEHardware* hw, webrtc::VoENetwork* network, webrtc::VoERTP_RTCP* rtp, webrtc::VoEVolumeControl* volume) argument
/external/webrtc/webrtc/
H A Daudio_receive_stream.h84 } rtp; member in struct:webrtc::AudioReceiveStream::Config
H A Daudio_send_stream.h72 } rtp; member in struct:webrtc::AudioSendStream::Config
H A Dvideo_receive_stream.h138 } rtp; member in struct:webrtc::VideoReceiveStream::Config
H A Dvideo_send_stream.h133 } rtp; member in struct:webrtc::VideoSendStream::Config
/external/curl/lib/
H A Drtsp.c611 char *rtp; /* moving pointer to rtp data */ local
628 rtp = rtspc->rtp_buf;
633 rtp = k->str;
638 (rtp[0] == '$')) {
644 rtspc->rtp_channel = RTP_PKT_CHANNEL(rtp);
647 rtp_length = RTP_PKT_LENGTH(rtp);
659 result = rtp_client_write(conn, &rtp[0], rtp_length + 4);
671 rtp += rtp_length + 4;
688 if(rtp_dataleft != 0 && rtp[
[all...]
/external/skia/src/gpu/glsl/
H A DGrGLSLFragmentShaderBuilder.cpp303 const GrRenderTargetPriv& rtp = pipeline.getRenderTarget()->renderTargetPriv(); local
304 const GrGpu::MultisampleSpecs& specs = rtp.getMultisampleSpecs(pipeline);
/external/webrtc/webrtc/modules/video_coding/
H A Dgeneric_encoder.cc25 // Map information from info into rtp. If no relevant information is found
26 // in info, rtp is set to NULL.
27 void CopyCodecSpecific(const CodecSpecificInfo* info, RTPVideoHeader* rtp) { argument
31 rtp->codec = kRtpVideoVp8;
32 rtp->codecHeader.VP8.InitRTPVideoHeaderVP8();
33 rtp->codecHeader.VP8.pictureId = info->codecSpecific.VP8.pictureId;
34 rtp->codecHeader.VP8.nonReference = info->codecSpecific.VP8.nonReference;
35 rtp->codecHeader.VP8.temporalIdx = info->codecSpecific.VP8.temporalIdx;
36 rtp->codecHeader.VP8.layerSync = info->codecSpecific.VP8.layerSync;
37 rtp
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_rtcp_impl_unittest.cc414 StreamDataCounters rtp; local
416 rtp.first_packet_time_ms = kStartTimeMs;
417 rtp.transmitted.packets = 1;
418 rtp.transmitted.payload_bytes = 1;
419 rtp.transmitted.header_bytes = 2;
420 rtp.transmitted.padding_bytes = 3;
421 EXPECT_EQ(rtp.transmitted.TotalBytes(), rtp.transmitted.payload_bytes +
422 rtp.transmitted.header_bytes +
423 rtp
[all...]
/external/dhcpcd-6.8.2/
H A Dipv4.c577 struct rt *rtp, *rtn; local
585 TAILQ_FOREACH(rtp, rt, next) {
586 if (rtp->dest.s_addr != INADDR_ANY)
590 if (rtn == rtp)
593 if (rtn->dest.s_addr == rtp->gate.s_addr)
596 cp = (const char *)&rtp->gate.s_addr;
607 if (rtn != rtp)
618 ifp->name, inet_ntoa(rtp->gate));
620 rtp->gate.s_addr = 0;
629 ifp->name, inet_ntoa(rtp
[all...]
/external/skia/src/gpu/instanced/
H A DInstanceProcessor.cpp1684 const GrRenderTargetPriv& rtp = pipeline.getRenderTarget()->renderTargetPriv(); local
1685 const GrGpu::MultisampleSpecs& specs = rtp.getMultisampleSpecs(pipeline);
/external/webrtc/talk/session/media/
H A Dchannel_unittest.cc372 // Set SSRC in the rtp packet copy.
1745 TransportChannel* rtp = channel1_->transport_channel(); local
1748 rtp->SignalReadyToSend(rtp);
1751 // MediaChannel::OnReadyToSend only be called when both rtp and rtcp
1755 // rtp channel becomes not ready to send will be propagated to mediachannel
1777 TransportChannel* rtp = channel1_->transport_channel(); local
1779 // In the case of rtcp mux, the SignalReadyToSend() from rtp channel
1781 rtp->SignalReadyToSend(rtp);
[all...]
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 1697 milliseconds