mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-08 08:25:33 +00:00
17 lines
267 B
Objective-C
17 lines
267 B
Objective-C
#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
|
|
|