mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
Add glib main loop to capture manager (#383)
The gstreamer documentation is not particularly amazing on whether or not this is necessary, but it's clear that some gstreamer events will not be delivered to their handlers without a running glib loop. This runs one loop for all pipelines, which should be more than enough. Disclaimer: This may conflict in demodesk/neko with the dragdrop feature. Anyone backporting this bug fix to that repo should investigate whether the loop created by `gtk_main()` will conflict with this one before blindly porting. Fixes #380 Fixes #284
This commit is contained in:
parent
2b13220d63
commit
b1ce755210
@ -31,12 +31,29 @@ var pSerial int32
|
|||||||
var pipelines = make(map[int]*Pipeline)
|
var pipelines = make(map[int]*Pipeline)
|
||||||
var pipelinesLock sync.Mutex
|
var pipelinesLock sync.Mutex
|
||||||
var registry *C.GstRegistry
|
var registry *C.GstRegistry
|
||||||
|
var gMainLoop *C.GMainLoop
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
C.gst_init(nil, nil)
|
C.gst_init(nil, nil)
|
||||||
registry = C.gst_registry_get()
|
registry = C.gst_registry_get()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func RunMainLoop() {
|
||||||
|
if gMainLoop != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
gMainLoop = C.g_main_loop_new(nil, C.int(0))
|
||||||
|
C.g_main_loop_run(gMainLoop)
|
||||||
|
}
|
||||||
|
|
||||||
|
func QuitMainLoop() {
|
||||||
|
if gMainLoop == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
C.g_main_loop_quit(gMainLoop)
|
||||||
|
gMainLoop = nil
|
||||||
|
}
|
||||||
|
|
||||||
func CreatePipeline(pipelineStr string) (*Pipeline, error) {
|
func CreatePipeline(pipelineStr string) (*Pipeline, error) {
|
||||||
id := atomic.AddInt32(&pSerial, 1)
|
id := atomic.AddInt32(&pSerial, 1)
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ import (
|
|||||||
"github.com/rs/zerolog"
|
"github.com/rs/zerolog"
|
||||||
"github.com/rs/zerolog/log"
|
"github.com/rs/zerolog/log"
|
||||||
|
|
||||||
|
"m1k1o/neko/internal/capture/gst"
|
||||||
"m1k1o/neko/internal/config"
|
"m1k1o/neko/internal/config"
|
||||||
"m1k1o/neko/internal/types"
|
"m1k1o/neko/internal/types"
|
||||||
)
|
)
|
||||||
@ -53,6 +54,7 @@ func (manager *CaptureManagerCtx) Start() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
go gst.RunMainLoop()
|
||||||
go func() {
|
go func() {
|
||||||
for {
|
for {
|
||||||
before, ok := <-manager.desktop.GetScreenSizeChangeChannel()
|
before, ok := <-manager.desktop.GetScreenSizeChangeChannel()
|
||||||
@ -100,6 +102,8 @@ func (manager *CaptureManagerCtx) Shutdown() error {
|
|||||||
manager.audio.shutdown()
|
manager.audio.shutdown()
|
||||||
manager.video.shutdown()
|
manager.video.shutdown()
|
||||||
|
|
||||||
|
gst.QuitMainLoop()
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user