mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-12 10:49:59 +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_;
|
std::vector< std::future< std::list<std::string> > > promisedlist_;
|
||||||
public:
|
public:
|
||||||
MultipleImagesDialog(const std::string &name) : FileDialog(name) {}
|
MultipleImagesDialog(const std::string &name) : FileDialog(name) {}
|
||||||
void open();
|
void open() override;
|
||||||
bool closed() override;
|
bool closed() override;
|
||||||
inline std::list<std::string> images() const { return pathlist_; }
|
inline std::list<std::string> images() const { return pathlist_; }
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -59,20 +59,20 @@ protected:
|
|||||||
std::atomic<bool> active_;
|
std::atomic<bool> active_;
|
||||||
std::atomic<bool> endofstream_;
|
std::atomic<bool> endofstream_;
|
||||||
std::atomic<bool> accept_buffer_;
|
std::atomic<bool> accept_buffer_;
|
||||||
|
std::atomic<bool> buffering_full_;
|
||||||
|
|
||||||
// gstreamer pipeline
|
// gstreamer pipeline
|
||||||
GstElement *pipeline_;
|
GstElement *pipeline_;
|
||||||
GstAppSrc *src_;
|
GstAppSrc *src_;
|
||||||
GstCaps *caps_;
|
GstCaps *caps_;
|
||||||
|
|
||||||
|
GstClock *timer_;
|
||||||
GstClockTime timestamp_;
|
GstClockTime timestamp_;
|
||||||
GstClockTime frame_duration_;
|
GstClockTime frame_duration_;
|
||||||
guint64 frame_count_;
|
guint64 frame_count_;
|
||||||
guint64 buffering_size_;
|
guint64 buffering_size_;
|
||||||
std::atomic<bool> buffering_full_;
|
|
||||||
|
|
||||||
GstClockTime timer_firstframe_;
|
GstClockTime timer_firstframe_;
|
||||||
GstClock *timer_;
|
|
||||||
|
|
||||||
// gstreamer callbacks
|
// gstreamer callbacks
|
||||||
static void callback_need_data (GstAppSrc *, guint, gpointer user_data);
|
static void callback_need_data (GstAppSrc *, guint, gpointer user_data);
|
||||||
|
|||||||
Reference in New Issue
Block a user