OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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;
197
data[4] =
kSourceID
>> 24;
198
data[5] = (
kSourceID
>> 16) & 0xff;
199
data[6] = (
kSourceID
>> 8) & 0xff;
200
data[7] =
kSourceID
& 0xff;
235
data[4] =
kSourceID
>> 24;
236
data[5] = (
kSourceID
>> 16) & 0xff;
237
data[6] = (
kSourceID
>> 8) & 0xff;
238
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;
278
rtp[8] =
kSourceID
>> 24;
279
rtp[9] = (
kSourceID
>> 16) & 0xff;
280
rtp[10] = (
kSourceID
>> 8) & 0xff;
281
rtp[11] =
kSourceID
& 0xff;
444
dst[8] =
kSourceID
>> 24;
445
dst[9] = (
kSourceID
>> 16) & 0xff
[
all
...]
RTPSender.h
72
kSourceID
= 0xdeadbeef,
Completed in 85 milliseconds