gstreamer/test/mp1parse.c
Wim Taymans 8dfef4d6b6 cleanup. Still not working...
Original commit message from CVS:
cleanup. Still not working...
2000-02-06 01:52:15 +00:00

75 lines
2.1 KiB
C

#include <gst/gst.h>
extern gboolean _gst_plugin_spew;
void eof(GstSrc *src) {
g_print("have eof, quitting\n");
exit(0);
}
void mp1parse_info_chain(GstPad *pad,GstBuffer *buf) {
g_print("sink : got buffer of size %d\n",GST_BUFFER_SIZE(buf));
gst_buffer_unref(buf);
}
void new_pad_created(GstElement *parse, GstPad *pad) {
GstPad *infopad;
g_print("a new pad %s was created\n", gst_pad_get_name(pad));
// connect to audio pad
if (strncmp(gst_pad_get_name(pad), "audio_", 6) == 0) {
infopad = gst_pad_new("sink",GST_PAD_SINK);
gst_pad_set_chain_function(infopad,mp1parse_info_chain);
gst_pad_connect(gst_element_get_pad(parse,gst_pad_get_name(pad)),
infopad);
}
}
int main(int argc,char *argv[]) {
GstPipeline *pipeline;
GstElementFactory *srcfactory, *parsefactory;
GstElement *src, *parse;
g_print("have %d args\n",argc);
_gst_plugin_spew = TRUE;
gst_init(&argc,&argv);
// gst_plugin_load("mp3parse");
gst_plugin_load_all();
pipeline = gst_pipeline_new("pipeline");
g_return_if_fail(pipeline != NULL);
srcfactory = gst_elementfactory_find("disksrc");
g_return_if_fail(srcfactory != NULL);
parsefactory = gst_elementfactory_find("mpeg1parse");
g_return_if_fail(parsefactory != NULL);
src = gst_elementfactory_create(srcfactory,"src");
g_return_if_fail(src != NULL);
gtk_object_set(GTK_OBJECT(src),"location",argv[1],NULL);
g_print("should be using file '%s'\n",argv[1]);
parse = gst_elementfactory_create(parsefactory,"parse");
g_return_if_fail(parse != NULL);
gst_bin_add(GST_BIN(pipeline),GST_ELEMENT(src));
gst_bin_add(GST_BIN(pipeline),GST_ELEMENT(parse));
gtk_signal_connect(GTK_OBJECT(parse),"new_pad",
GTK_SIGNAL_FUNC(new_pad_created),NULL);
gtk_signal_connect(GTK_OBJECT(src),"eos",
GTK_SIGNAL_FUNC(eof),NULL);
gst_pad_connect(gst_element_get_pad(src,"src"),
gst_element_get_pad(parse,"sink"));
g_print("setting to RUNNING state\n");
gst_element_set_state(GST_ELEMENT(pipeline),GST_STATE_RUNNING);
g_print("about to enter loop\n");
while (1)
gst_src_push(GST_SRC(src));
}