zoneminder/src/zm_packetqueue.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

83 lines
2.9 KiB
C
Raw Normal View History

2016-04-04 18:04:14 +08:00
//ZoneMinder Packet Queue Interface Class
//Copyright 2016 Steve Gilvarry
//
//This file is part of ZoneMinder.
//
//ZoneMinder is free software: you can redistribute it and/or modify
//it under the terms of the GNU General Public License as published by
//the Free Software Foundation, either version 3 of the License, or
//(at your option) any later version.
//
//ZoneMinder is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//GNU General Public License for more details.
//
//You should have received a copy of the GNU General Public License
//along with ZoneMinder. If not, see <http://www.gnu.org/licenses/>.
#ifndef ZM_PACKETQUEUE_H
#define ZM_PACKETQUEUE_H
#include <condition_variable>
#include <list>
#include <mutex>
2016-04-04 18:04:14 +08:00
class ZMPacket;
typedef std::list<ZMPacket *>::iterator packetqueue_iterator;
class PacketQueue {
2017-12-01 03:37:36 +08:00
public: // For now just to ease development
std::list<ZMPacket *> pktQueue;
std::list<ZMPacket *>::iterator analysis_it;
2017-12-01 20:26:34 +08:00
int video_stream_id;
2017-12-06 05:16:52 +08:00
int max_video_packet_count; // allow a negative value to someday mean unlimited
int max_stream_id;
int *packet_counts; /* packet count for each stream_id, to keep track of how many video vs audio packets are in the queue */
bool deleting;
std::list<packetqueue_iterator *> iterators;
2017-12-01 03:37:36 +08:00
std::mutex mutex;
std::condition_variable condition;
2017-12-08 23:39:57 +08:00
public:
PacketQueue();
virtual ~PacketQueue();
std::list<ZMPacket *>::const_iterator end() const { return pktQueue.end(); }
std::list<ZMPacket *>::const_iterator begin() const { return pktQueue.begin(); }
2017-12-08 23:39:57 +08:00
void addStreamId(int p_stream_id);
void setMaxVideoPackets(int p);
bool queuePacket(ZMPacket* packet);
ZMPacket * popPacket();
2017-02-19 04:22:56 +08:00
bool popVideoPacket(ZMPacket* packet);
bool popAudioPacket(ZMPacket* packet);
unsigned int clear(unsigned int video_frames_to_keep, int stream_id);
unsigned int clear(struct timeval *duration, int streamid);
void clear();
2019-06-21 03:14:20 +08:00
void dumpQueue();
2016-09-21 04:59:43 +08:00
unsigned int size();
unsigned int get_packet_count(int stream_id) const { return packet_counts[stream_id]; };
void clear_unwanted_packets(timeval *recording, int pre_event_count, int mVideoStreamId);
int packet_count(int stream_id);
2016-04-04 18:04:14 +08:00
bool increment_it(packetqueue_iterator *it);
bool increment_it(packetqueue_iterator *it, int stream_id);
ZMPacket *get_packet(packetqueue_iterator *);
packetqueue_iterator *get_video_it(bool wait);
packetqueue_iterator *get_stream_it(int stream_id);
void free_it(packetqueue_iterator *);
packetqueue_iterator *get_event_start_packet_it(
packetqueue_iterator snapshot_it,
unsigned int pre_event_count
);
bool is_there_an_iterator_pointing_to_packet(ZMPacket *zm_packet);
2016-04-04 18:04:14 +08:00
};
#endif /* ZM_PACKETQUEUE_H */