mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
18 lines
267 B
Mathematica
18 lines
267 B
Mathematica
|
#import "GStreamerBackend.h"
|
||
|
|
||
|
#include <gst/gst.h>
|
||
|
|
||
|
@implementation GStreamerBackend
|
||
|
|
||
|
|
||
|
-(NSString*) getGStreamerVersion
|
||
|
{
|
||
|
char *str = gst_version_string();
|
||
|
NSString *version = [NSString stringWithUTF8String:str];
|
||
|
g_free(str);
|
||
|
return version;
|
||
|
}
|
||
|
|
||
|
@end
|
||
|
|