HomeSort by relevance Sort by last modified time
    Searched defs:CSRC (Results 1 - 2 of 2) sorted by null

  /external/nanopb-c/examples/simple/
Makefile 9 CSRC = simple.c # The main program
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/modules/rtp_rtcp/source/
rtp_utility.cc 356 uint32_t CSRC = *ptr++ << 24;
357 CSRC += *ptr++ << 16;
358 CSRC += *ptr++ << 8;
359 CSRC += *ptr++;
360 header.arrOfCSRCs[i] = CSRC;

Completed in 52 milliseconds