mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
157 lines
3.2 KiB
Go
157 lines
3.2 KiB
Go
package gst
|
|
|
|
/*
|
|
#cgo pkg-config: gstreamer-1.0 gstreamer-app-1.0
|
|
|
|
#include "gst.h"
|
|
*/
|
|
import "C"
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
"time"
|
|
"unsafe"
|
|
|
|
"demodesk/neko/internal/types"
|
|
|
|
"github.com/rs/zerolog"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
type Pipeline struct {
|
|
id int
|
|
Src string
|
|
Ctx *C.GstPipelineCtx
|
|
Sample chan types.Sample
|
|
}
|
|
|
|
var pipelines = make(map[int]*Pipeline)
|
|
var pipelinesLock sync.Mutex
|
|
var registry *C.GstRegistry
|
|
|
|
func init() {
|
|
C.gstreamer_init()
|
|
go C.gstreamer_loop()
|
|
|
|
registry = C.gst_registry_get()
|
|
}
|
|
|
|
func CreatePipeline(pipelineStr string) (*Pipeline, error) {
|
|
pipelineStrUnsafe := C.CString(pipelineStr)
|
|
defer C.free(unsafe.Pointer(pipelineStrUnsafe))
|
|
|
|
pipelinesLock.Lock()
|
|
defer pipelinesLock.Unlock()
|
|
|
|
id := len(pipelines)
|
|
|
|
var gstError *C.GError
|
|
ctx := C.gstreamer_pipeline_create(pipelineStrUnsafe, C.int(id), &gstError)
|
|
|
|
if gstError != nil {
|
|
defer C.g_error_free(gstError)
|
|
return nil, fmt.Errorf("(pipeline error) %s", C.GoString(gstError.message))
|
|
}
|
|
|
|
p := &Pipeline{
|
|
id: id,
|
|
Src: pipelineStr,
|
|
Ctx: ctx,
|
|
Sample: make(chan types.Sample),
|
|
}
|
|
|
|
pipelines[p.id] = p
|
|
return p, nil
|
|
}
|
|
|
|
func (p *Pipeline) AttachAppsink(sinkName string) {
|
|
sinkNameUnsafe := C.CString(sinkName)
|
|
defer C.free(unsafe.Pointer(sinkNameUnsafe))
|
|
|
|
C.gstreamer_pipeline_attach_appsink(p.Ctx, sinkNameUnsafe)
|
|
}
|
|
|
|
func (p *Pipeline) Play() {
|
|
C.gstreamer_pipeline_play(p.Ctx)
|
|
}
|
|
|
|
func (p *Pipeline) Pause() {
|
|
C.gstreamer_pipeline_pause(p.Ctx)
|
|
}
|
|
|
|
func (p *Pipeline) Destroy() {
|
|
C.gstreamer_pipeline_destory(p.Ctx)
|
|
p.Ctx = nil
|
|
close(p.Sample)
|
|
}
|
|
|
|
func (p *Pipeline) Push(srcName string, buffer []byte) {
|
|
srcNameUnsafe := C.CString(srcName)
|
|
defer C.free(unsafe.Pointer(srcNameUnsafe))
|
|
|
|
bytes := C.CBytes(buffer)
|
|
defer C.free(bytes)
|
|
|
|
C.gstreamer_pipeline_push(p.Ctx, srcNameUnsafe, bytes, C.int(len(buffer)))
|
|
}
|
|
|
|
// gst-inspect-1.0
|
|
func CheckPlugins(plugins []string) error {
|
|
var plugin *C.GstPlugin
|
|
for _, pluginstr := range plugins {
|
|
plugincstr := C.CString(pluginstr)
|
|
plugin = C.gst_registry_find_plugin(registry, plugincstr)
|
|
C.free(unsafe.Pointer(plugincstr))
|
|
if plugin == nil {
|
|
return fmt.Errorf("required gstreamer plugin %s not found", pluginstr)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
//export goHandlePipelineBuffer
|
|
func goHandlePipelineBuffer(buffer unsafe.Pointer, bufferLen C.int, duration C.int, pipelineID C.int) {
|
|
defer C.free(buffer)
|
|
|
|
pipelinesLock.Lock()
|
|
pipeline, ok := pipelines[int(pipelineID)]
|
|
pipelinesLock.Unlock()
|
|
|
|
if ok {
|
|
pipeline.Sample <- types.Sample{
|
|
Data: C.GoBytes(buffer, bufferLen),
|
|
Duration: time.Duration(duration),
|
|
}
|
|
} else {
|
|
log.Warn().
|
|
Str("module", "capture").
|
|
Str("submodule", "gstreamer").
|
|
Msgf("discarding sample, no pipeline with id %d", int(pipelineID))
|
|
}
|
|
}
|
|
|
|
//export goPipelineLog
|
|
func goPipelineLog(levelUnsafe *C.char, msgUnsafe *C.char, pipelineID C.int) {
|
|
levelStr := C.GoString(levelUnsafe)
|
|
msg := C.GoString(msgUnsafe)
|
|
|
|
logger := log.With().
|
|
Str("module", "capture").
|
|
Str("submodule", "gstreamer").
|
|
Logger()
|
|
|
|
pipelinesLock.Lock()
|
|
pipeline, ok := pipelines[int(pipelineID)]
|
|
pipelinesLock.Unlock()
|
|
|
|
if ok {
|
|
logger = logger.With().
|
|
Int("id", pipeline.id).
|
|
Logger()
|
|
}
|
|
|
|
level, _ := zerolog.ParseLevel(levelStr)
|
|
logger.WithLevel(level).Msg(msg)
|
|
}
|