gstreamer/gst-sdk/tutorials/xcode iOS/Tutorial 1/GStreamerBackend.m

17 lines
266 B
Mathematica
Raw Normal View History

2013-04-29 15:45:38 +00:00
#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