Searched defs:CSRC (Results 1 - 10 of 10) sorted by relevance

/external/nanopb-c/examples/simple/
H A DMakefile9 CSRC = simple.c # The main program macro
10 CSRC += simple.pb.c # The compiled protocol definition
11 CSRC += $(NANOPB_DIR)/pb_encode.c # The nanopb encoder
12 CSRC += $(NANOPB_DIR)/pb_decode.c # The nanopb decoder
15 simple: $(CSRC)
16 $(CC) $(CFLAGS) -osimple $(CSRC)
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_frame_provider_base.cc50 const uint32_t CSRC[kRtpCsrcSize]) {
60 frame_callbacks_.front()->DeliverFrame(id_, video_frame, num_csrcs, CSRC);
65 (*it)->DeliverFrame(id_, video_frame, num_csrcs, CSRC);
72 (*it)->DeliverFrame(id_, extra_frame_.get(), num_csrcs, CSRC);
47 DeliverFrame( I420VideoFrame* video_frame, int num_csrcs, const uint32_t CSRC[kRtpCsrcSize]) argument
H A Dvie_renderer.cc141 const uint32_t CSRC[kRtpCsrcSize]) {
138 DeliverFrame(int id, I420VideoFrame* video_frame, int num_csrcs, const uint32_t CSRC[kRtpCsrcSize]) argument
H A Dvie_encoder.cc455 const uint32_t CSRC[kRtpCsrcSize]) {
486 // Make sure the CSRC list is correct.
490 if (CSRC[i] == 1) {
493 tempCSRC[i] = CSRC[i];
452 DeliverFrame(int id, I420VideoFrame* video_frame, int num_csrcs, const uint32_t CSRC[kRtpCsrcSize]) argument
H A Dvie_channel.cc1730 const uint32_t CSRC,
1736 rtp_observer_->IncomingCSRCChanged(channel_id_, CSRC, added);
1729 OnIncomingCSRCChanged(const int32_t id, const uint32_t CSRC, const bool added) argument
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/standard/
H A Drtp_rtcp_test.cc25 unsigned int CSRC,
24 OnIncomingCSRCChanged(int channel, unsigned int CSRC, bool added) argument
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_utility.cc356 uint32_t CSRC = *ptr++ << 24; local
357 CSRC += *ptr++ << 16;
358 CSRC += *ptr++ << 8;
359 CSRC += *ptr++;
360 header.arrOfCSRCs[i] = CSRC;
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
H A Dvie_autotest_rtp_rtcp.cc38 const unsigned int CSRC, const bool added)
37 IncomingCSRCChanged(const int videoChannel, const unsigned int CSRC, const bool added) argument
/external/chromium_org/third_party/webrtc/voice_engine/test/win_test/
H A DWinTestDlg.cc132 void CWinTestDlg::OnIncomingCSRCChanged(int channel, unsigned int CSRC, bool added) argument
135 str.Format(_T("OnIncomingCSRCChanged(channel=%d) => CSRC=%u, added=%d"), channel, CSRC, added);
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel.cc309 uint32_t CSRC,
313 "Channel::OnIncomingCSRCChanged(id=%d, CSRC=%d, added=%d)",
314 id, CSRC, added);
308 OnIncomingCSRCChanged(int32_t id, uint32_t CSRC, bool added) argument

Completed in 426 milliseconds