OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
(Results
1 - 2
of
2
) sorted by null
/external/opencore/protocols/rtp/src/
rtcp.cpp
193
if (index <
NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
)
200
additional_reports = OSCL_ARRAY_NEW(RTCP_ReportBlock, max_report_blocks -
NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
);
204
return additional_reports + (index -
NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
);
217
if (index <
NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
)
227
return additional_reports + (index -
NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
);
242
if (new_max_report_blocks >
NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
)
246
additional_reports = OSCL_ARRAY_NEW(RTCP_ReportBlock, new_max_report_blocks -
NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
);
250
else if (new_max_report_blocks >
NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
)
253
additional_reports = OSCL_ARRAY_NEW(RTCP_ReportBlock, new_max_report_blocks -
NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
);
269
if (index <
NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
)
[
all
...]
rtcp.h
56
const uint
NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
= 1;
202
RTCP_ReportBlock preallocated_reports[
NUM_PREALLOCATED_RTCP_SR_REPORT_BLOCKS
];
Completed in 370 milliseconds