mirror of
https://github.com/go-gst/go-gst.git
synced 2025-10-06 08:27:03 +08:00

* Debugger Enablement: Switching CGO/gst utility functions from inline to concrete symbols Unfortunately debug Go builds during linkage due to be unable to find the inline functions. This commit converts the inline functions to concrete symbols. The performance implications are untested. * Debugger Enablement: gst-base: Switching CGO/gst utility functions from inline to concrete symbols Unfortunately debug Go builds during linkage due to be unable to find the inline functions. This commit converts the inline functions to concrete symbols. The performance implications are untested. enable debugger for base * Debugger Enablement: gst-app: Switching CGO/gst utility functions from inline to concrete symbols Unfortunately debug Go builds during linkage due to be unable to find the inline functions. This commit converts the inline functions to concrete symbols. The performance implications are untested. * Debugger Enablement: Removing clashes with go-glib
11 lines
217 B
C
11 lines
217 B
C
#ifndef __GST_APP_GO_H__
|
|
#define __GST_APP_GO_H__
|
|
|
|
#include <gst/app/gstappsink.h>
|
|
#include <gst/app/gstappsrc.h>
|
|
|
|
extern GstAppSink * toGstAppSink (void *p);
|
|
extern GstAppSrc * toGstAppSrc (void *p);
|
|
|
|
#endif
|