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

  /external/opencore/protocols/rtp/src/
rtcp.cpp 76 if (index < NUM_PREALLOCATED_RTCP_RR_REPORT_BLOCKS)
84 additional_reports = OSCL_ARRAY_NEW(RTCP_ReportBlock, max_report_blocks - NUM_PREALLOCATED_RTCP_RR_REPORT_BLOCKS);
87 return additional_reports + (index - NUM_PREALLOCATED_RTCP_RR_REPORT_BLOCKS);
101 if (index < NUM_PREALLOCATED_RTCP_RR_REPORT_BLOCKS)
111 return additional_reports + (index - NUM_PREALLOCATED_RTCP_RR_REPORT_BLOCKS);
126 if (new_max_report_blocks > NUM_PREALLOCATED_RTCP_RR_REPORT_BLOCKS)
130 additional_reports = OSCL_ARRAY_NEW(RTCP_ReportBlock, new_max_report_blocks - NUM_PREALLOCATED_RTCP_RR_REPORT_BLOCKS);
134 else if (new_max_report_blocks > NUM_PREALLOCATED_RTCP_RR_REPORT_BLOCKS)
137 additional_reports = OSCL_ARRAY_NEW(RTCP_ReportBlock, new_max_report_blocks - NUM_PREALLOCATED_RTCP_RR_REPORT_BLOCKS);
153 if (index < NUM_PREALLOCATED_RTCP_RR_REPORT_BLOCKS)
    [all...]
rtcp.h 55 const uint NUM_PREALLOCATED_RTCP_RR_REPORT_BLOCKS = 1;
155 RTCP_ReportBlock preallocated_reports[NUM_PREALLOCATED_RTCP_RR_REPORT_BLOCKS];

Completed in 853 milliseconds