mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-12 02:40:00 +01:00
Minor compilation warning fixed
This commit is contained in:
@@ -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_; }
|
||||
};
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user