fix parameter order

This commit is contained in:
Isaac Connor 2019-10-18 13:39:52 -04:00
parent 17a7d02275
commit 6a56de41f0
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ bool zm_packetqueue::queuePacket(ZMPacket* zm_packet) {
( packet_counts[zm_packet->packet.stream_index] <= 0 )
) {
Debug(2,"Inserting packet with dts %" PRId64 " because queue %d is empty (queue size: %d) or invalid dts",
zm_packet->packet.stream_index, packet_counts[zm_packet->packet.stream_index], zm_packet->packet.dts);
zm_packet->packet.dts, zm_packet->packet.stream_index, packet_counts[zm_packet->packet.stream_index]
);
// No dts value, can't so much with it
pktQueue.push_back(zm_packet);
packet_counts[zm_packet->packet.stream_index] += 1;