gstreamer/tests/load.c
Wim Taymans 42ebe8b588 Fixed a couple of compiler warnings.
Original commit message from CVS:
Fixed a couple of compiler warnings.
2001-06-01 18:24:41 +00:00

12 lines
177 B
C

#include <gst/gst.h>
int main(int argc,char *argv[]) {
GstElement *element;
gst_init(&argc,&argv);
element = gst_elementfactory_make(argv[1],"element");
return 0;
}