diff --git a/modules/pacing/packet_queue2.h b/modules/pacing/packet_queue2.h index 06e0f08b38..8c18a0fb60 100644 --- a/modules/pacing/packet_queue2.h +++ b/modules/pacing/packet_queue2.h @@ -49,7 +49,7 @@ class PacketQueue2 : public PacketQueue { bool operator<(const StreamPrioKey& other) const { if (priority != other.priority) return priority < other.priority; - return bytes > other.bytes; + return bytes < other.bytes; } const RtpPacketSender::Priority priority;