//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 . #ifndef ZM_PACKETQUEUE_H #define ZM_PACKETQUEUE_H //#include //#include //#include #include #include "zm_packet.h" extern "C" { #include } class zm_packetqueue { public: zm_packetqueue(); virtual ~zm_packetqueue(); bool queuePacket( AVPacket* packet, struct timeval *timestamp ); bool queuePacket( ZMPacket* packet ); bool queuePacket( AVPacket* packet ); ZMPacket * popPacket( ); bool popVideoPacket(ZMPacket* packet); bool popAudioPacket(ZMPacket* packet); unsigned int clearQueue( unsigned int video_frames_to_keep, int stream_id ); void clearQueue( ); unsigned int size(); void clear_unwanted_packets( timeval *recording, int mVideoStreamId ); private: std::list pktQueue; }; #endif /* ZM_PACKETQUEUE_H */