mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-07 16:30:00 +01:00
29 lines
555 B
C++
29 lines
555 B
C++
#ifndef __GSTGUI_TOOLKIT_H_
|
|
#define __GSTGUI_TOOLKIT_H_
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <string>
|
|
#include <list>
|
|
|
|
namespace GstToolkit
|
|
{
|
|
|
|
typedef enum {
|
|
TIME_STRING_FIXED = 0,
|
|
TIME_STRING_ADJUSTED,
|
|
TIME_STRING_MINIMAL
|
|
} time_string_mode;
|
|
|
|
std::string time_to_string(guint64 t, time_string_mode m = TIME_STRING_ADJUSTED);
|
|
|
|
std::string gst_version();
|
|
std::list<std::string> all_plugins();
|
|
std::list<std::string> all_plugin_features(std::string pluginname);
|
|
|
|
bool enable_feature (std::string name, bool enable);
|
|
|
|
}
|
|
|
|
#endif // __GSTGUI_TOOLKIT_H_
|