HomeSort by relevance Sort by last modified time
    Searched refs:kSourceID (Results 1 - 3 of 3) sorted by null

  /frameworks/av/media/libstagefright/rtsp/
ARTPSource.cpp 38 static const uint32_t kSourceID = 0xdeadbeef;
190 data[4] = kSourceID >> 24;
191 data[5] = (kSourceID >> 16) & 0xff;
192 data[6] = (kSourceID >> 8) & 0xff;
193 data[7] = kSourceID & 0xff;
228 data[4] = kSourceID >> 24;
229 data[5] = (kSourceID >> 16) & 0xff;
230 data[6] = (kSourceID >> 8) & 0xff;
231 data[7] = kSourceID & 0xff;
  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.cpp 234 rtp[8] = kSourceID >> 24;
235 rtp[9] = (kSourceID >> 16) & 0xff;
236 rtp[10] = (kSourceID >> 8) & 0xff;
237 rtp[11] = kSourceID & 0xff;
280 rtp[8] = kSourceID >> 24;
281 rtp[9] = (kSourceID >> 16) & 0xff;
282 rtp[10] = (kSourceID >> 8) & 0xff;
283 rtp[11] = kSourceID & 0xff;
446 dst[8] = kSourceID >> 24;
447 dst[9] = (kSourceID >> 16) & 0xff
    [all...]
RTPSender.h 72 kSourceID = 0xdeadbeef,

Completed in 1266 milliseconds