mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
15 lines
276 B
C
15 lines
276 B
C
|
#include <gst/gst.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
void *gst_arts_wrapper_new(GstPad *sinkpad, GstPad *sourcepad);
|
||
|
void gst_arts_wrapper_free(void *wrapper);
|
||
|
void gst_arts_wrapper_do(void *wrapper);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif /* __cplusplus */
|
||
|
|