mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
42ebe8b588
Original commit message from CVS: Fixed a couple of compiler warnings.
11 lines
177 B
C
11 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;
|
|
}
|