Remove <set> and <map> as they are not used

This commit is contained in:
Isaac Connor 2020-03-26 15:11:39 -04:00
parent 79ad2ec87d
commit bc950c9a34
1 changed files with 3 additions and 6 deletions

View File

@ -20,9 +20,6 @@
#ifndef ZM_EVENTSTREAM_H
#define ZM_EVENTSTREAM_H
#include <set>
#include <map>
#include "zm_image.h"
#include "zm_stream.h"
#include "zm_video.h"
@ -97,7 +94,7 @@ class EventStream : public StreamBase {
public:
EventStream() {
mode = DEFAULT_MODE;
replay_rate = DEFAULT_RATE;
replay_rate = DEFAULT_RATE;
forceEventChange = false;
@ -121,8 +118,8 @@ class EventStream : public StreamBase {
void runStream();
Image *getImage();
private:
AVCodecContext *input_codec_context;
AVCodec *input_codec;
AVCodecContext *input_codec_context;
AVCodec *input_codec;
};
#endif // ZM_EVENTSTREAM_H