mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
cb3af06726
Original commit message from CVS: Added more accurate mpeg system stream detection (MPEG1 and MPEG2) Added mpeg2 playback for gstplay
11 lines
452 B
C
11 lines
452 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);
|
|
|
|
/* 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);
|