diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2001-12-28 01:16:21 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2001-12-28 01:16:21 +0000 |
commit | 768bed66e868a4726309aadc943871953d476b0f (patch) | |
tree | aca1ee8232c39acd37f7cab3b671babfd51b06c3 /gst/mpegaudioparse/gstmpegaudioparse.c | |
parent | f3d2b564cca49331a8f12d1fcc55594126a6cf84 (diff) | |
download | gst-plugins-bad-768bed66e868a4726309aadc943871953d476b0f.tar.gz gst-plugins-bad-768bed66e868a4726309aadc943871953d476b0f.tar.bz2 gst-plugins-bad-768bed66e868a4726309aadc943871953d476b0f.zip |
Don't set the caps
Original commit message from CVS:
Don't set the caps
Diffstat (limited to 'gst/mpegaudioparse/gstmpegaudioparse.c')
-rw-r--r-- | gst/mpegaudioparse/gstmpegaudioparse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gst/mpegaudioparse/gstmpegaudioparse.c b/gst/mpegaudioparse/gstmpegaudioparse.c index 9b685209..74c3a07b 100644 --- a/gst/mpegaudioparse/gstmpegaudioparse.c +++ b/gst/mpegaudioparse/gstmpegaudioparse.c @@ -140,9 +140,8 @@ static void gst_mp3parse_init (GstMPEGAudioParse *mp3parse) { mp3parse->sinkpad = gst_pad_new_from_template(sink_temp, "sink"); - gst_pad_set_caps(mp3parse->sinkpad, gst_pad_get_padtemplate_caps (mp3parse->sinkpad)); + //gst_pad_set_caps(mp3parse->sinkpad, gst_pad_get_padtemplate_caps (mp3parse->sinkpad)); gst_element_add_pad(GST_ELEMENT(mp3parse),mp3parse->sinkpad); -// gst_pad_set_type_id(mp3parse->sinkpad, mp3type); #if 1 // set this to one to use the old chaining code gst_pad_set_chain_function(mp3parse->sinkpad,gst_mp3parse_chain); |