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

  /external/opencore/protocols/systems/3g-324m_pvterminal/h223/include/
adaptationlayer.h 41 IncomingALPduInfo() : sdu_size(0), crc_error(0), seq_num_error(0) {}
42 int16 sdu_size; member in class:IncomingALPduInfo
50 AdaptationLayer(TPVDirection dir, uint32 sdu_size, uint32 max_num_sdus): iLogger(NULL)
53 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_STACK_TRACE, (0, "AdaptationLayer::AdaptationLayer Dir=%d, Sdu Size=%d, Max num sdus=%d", dir, sdu_size, max_num_sdus));
54 iSduSize = sdu_size;
83 AdaptationLayer1(TPVDirection dir, uint32 sdu_size, uint32 max_num_sdus) : AdaptationLayer(dir, sdu_size, max_num_sdus)
108 AdaptationLayer2(TPVDirection dir, uint32 sdu_size, uint32 max_num_sdus, bool seqno = false)
109 : AdaptationLayer(dir, sdu_size, max_num_sdus),
149 AdaptationLayer3(TPVDirection dir, uint32 sdu_size, uint32 max_num_sdus, uint16 snpos
    [all...]
  /external/opencore/protocols/systems/3g-324m_pvterminal/h223/src/
cpvh223multiplex.cpp 620 int32 sdu_size = 0; local
625 sdu_size = sdu_sizes[1];
629 sdu_size = sdu_sizes[2];
632 sdu_size = sdu_sizes[3];
641 sdu_size = MAX_NONSEGMENTABLE_SDU_SIZE;
643 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_STACK_TRACE, (0, "CPVH223Multiplex::OpenChannel - SDU Size=%d", sdu_size));
647 uint32 min_sdu_size = (direction == INCOMING && h223lcnParams->segmentableFlag) ? sdu_size = MIN_SEGMENTABLE_SDU_SIZE : sdu_size;
665 h223lcnParams, (uint16)sdu_size, num_media_data))
    [all...]
logicalchannel.cpp 359 uint32 sdu_size = 0; local
362 sdu_size = iCurPdu->getFilledSize() - iAl->GetHdrSz();
371 sdu_size = 0;
374 if (sdu_size == 0)
400 if (sdu_size &&
401 ((sdu_size + frag.getMemFragSize() > iMaxSduSize) || !IsSegmentable()))
408 sdu_size = 0;
421 sdu_size += frag.getMemFragSize();
428 PVMF_OUTGOING_AUDIO_LOGDATATRAFFIC((0, "Stats of the outgoing audio SDU are: timestamp=%d, size=%d", iCurPduTimestamp, sdu_size));
432 PVMF_OUTGOING_VIDEO_LOGDATATRAFFIC((0, "Stats of the outgoing video SDU are: timestamp=%d, size=%d", iCurPduTimestamp, sdu_size));
    [all...]

Completed in 82 milliseconds