Minor compilation warning fixed

This commit is contained in:
Bruno
2021-08-09 10:08:32 +02:00
parent 818e554d35
commit 0eff8fd24d
2 changed files with 3 additions and 3 deletions

View File

@@ -73,7 +73,7 @@ class MultipleImagesDialog : public FileDialog
std::vector< std::future< std::list<std::string> > > promisedlist_;
public:
MultipleImagesDialog(const std::string &name) : FileDialog(name) {}
void open();
void open() override;
bool closed() override;
inline std::list<std::string> images() const { return pathlist_; }
};

View File

@@ -59,20 +59,20 @@ protected:
std::atomic<bool> active_;
std::atomic<bool> endofstream_;
std::atomic<bool> accept_buffer_;
std::atomic<bool> buffering_full_;
// gstreamer pipeline
GstElement *pipeline_;
GstAppSrc *src_;
GstCaps *caps_;
GstClock *timer_;
GstClockTime timestamp_;
GstClockTime frame_duration_;
guint64 frame_count_;
guint64 buffering_size_;
std::atomic<bool> buffering_full_;
GstClockTime timer_firstframe_;
GstClock *timer_;
// gstreamer callbacks
static void callback_need_data (GstAppSrc *, guint, gpointer user_data);