Closed pengwang7 closed 7 months ago
DWORD RTCPCompoundPacket::RTCPCompoundPacket::GetSize() const { DWORD size = 0; //Calculate for(RTCPPackets::const_iterator it = packets.begin(); it!=packets.end(); ++it) //Append size size = (*it)->GetSize(); //Return total size return size; }
According to the code comments, the size variable should be incremented, but in reality, it is not
good catch!
According to the code comments, the size variable should be incremented, but in reality, it is not