mirror of
https://github.com/go-gst/go-gst.git
synced 2025-10-24 00:03:27 +08:00
major move of all glib specific bindings and extendable objects from go runtime to go-glib package
This commit is contained in:
12
gst/gst_param_flags.go
Normal file
12
gst/gst_param_flags.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package gst
|
||||
|
||||
// #include "gst.go.h"
|
||||
import "C"
|
||||
|
||||
// Additional GStreamer ParamSpec flags
|
||||
const (
|
||||
ParameterControllable = C.GST_PARAM_CONTROLLABLE
|
||||
ParameterMutablePlaying = C.GST_PARAM_MUTABLE_PLAYING
|
||||
ParameterMutablePaused = C.GST_PARAM_MUTABLE_PAUSED
|
||||
ParameterMutableReady = C.GST_PARAM_MUTABLE_READY
|
||||
)
|
Reference in New Issue
Block a user