mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
60b626e820
Original commit message from CVS: glade based gstplay version. better avi/mpeg support. nice about dialog :-) Drag and drop should work.
12 lines
536 B
C
12 lines
536 B
C
|
|
/* mpeg1.c */
|
|
void mpeg1_new_pad_created(GstElement *parse,GstPad *pad,GstElement *pipeline);
|
|
void mpeg1_setup_video_thread(GstPad *pad, GstElement *show, GstElement *pipeline);
|
|
void mpeg1_setup_audio_thread(GstPad *pad, GstElement *show, GstElement *pipeline);
|
|
|
|
/* mpeg2.c */
|
|
void mpeg2_new_pad_created(GstElement *parse,GstPad *pad,GstElement *pipeline);
|
|
void mpeg2_setup_video_thread(GstPad *pad, GstElement *show, GstElement *pipeline);
|
|
|
|
/* avi.c */
|
|
void avi_new_pad_created(GstElement *parse,GstPad *pad,GstElement *pipeline);
|