mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
7f8d8fe8d5
Original commit message from CVS: Merged from GOBJECT1 to HEAD at 200106241
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
#include <gst/gst.h>
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
GstAutoplug *autoplug;
|
|
GstElement *element;
|
|
GstElement *sink;
|
|
GstElement *pipeline;
|
|
GstElement *disksrc;
|
|
|
|
gst_init(&argc,&argv);
|
|
|
|
sink = gst_elementfactory_make ("osssink", "osssink");
|
|
g_assert (sink != NULL);
|
|
|
|
autoplug = gst_autoplugfactory_make ("staticrender");
|
|
g_assert (autoplug != NULL);
|
|
|
|
element = gst_autoplug_to_renderers (autoplug,
|
|
gst_caps_new (
|
|
"mp3caps",
|
|
"audio/mp3",
|
|
NULL
|
|
),
|
|
sink,
|
|
NULL);
|
|
g_assert (element != NULL);
|
|
|
|
pipeline = gst_pipeline_new ("main_pipeline");
|
|
g_assert (pipeline != NULL);
|
|
|
|
disksrc = gst_elementfactory_make ("disksrc", "disk_reader");
|
|
g_assert (disksrc != NULL);
|
|
|
|
gst_bin_add (GST_BIN (pipeline), disksrc);
|
|
gst_bin_add (GST_BIN (pipeline), element);
|
|
|
|
gst_element_connect (disksrc, "src", element, "sink");
|
|
|
|
g_object_set (G_OBJECT (disksrc), "location", argv[1], NULL);
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
|
|
while (gst_bin_iterate (GST_BIN (pipeline)));
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
|
|
exit (0);
|
|
}
|