Merge branch 'sort_packets' into storageareas
This commit is contained in:
commit
4ecf41f2b4
|
@ -94,9 +94,11 @@ bool zm_packetqueue::queuePacket(ZMPacket* zm_packet) {
|
||||||
packet_counts[zm_packet->packet.stream_index] += 1;
|
packet_counts[zm_packet->packet.stream_index] += 1;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
Warning("Unable to insert packet for stream %d with dts %" PRId64 " into queue.",
|
Debug(1,"Unable to insert packet for stream %d with dts %" PRId64 " into queue.",
|
||||||
zm_packet->packet.stream_index, zm_packet->packet.dts);
|
zm_packet->packet.stream_index, zm_packet->packet.dts);
|
||||||
return false;
|
pktQueue.push_back(zm_packet);
|
||||||
|
packet_counts[zm_packet->packet.stream_index] += 1;
|
||||||
|
return true;
|
||||||
} // end bool zm_packetqueue::queuePacket(ZMPacket* zm_packet)
|
} // end bool zm_packetqueue::queuePacket(ZMPacket* zm_packet)
|
||||||
|
|
||||||
bool zm_packetqueue::queuePacket(AVPacket* av_packet) {
|
bool zm_packetqueue::queuePacket(AVPacket* av_packet) {
|
||||||
|
|
Loading…
Reference in New Issue