After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 332778 - [ogmparse] "Already an existing pad" WARNING
[ogmparse] "Already an existing pad" WARNING
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-base
git master
Other Linux
: Normal normal
: 0.10.4
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2006-02-27 19:50 UTC by Vincent Torri
Modified: 2006-03-02 12:37 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
test program (9.98 KB, text/plain)
2006-02-27 19:53 UTC, Vincent Torri
Details

Description Vincent Torri 2006-02-27 19:50:10 UTC
with the program attached below, and with that ogm file:

http://www.iecn.u-nancy.fr/~torri/files/gstreamer_pb/blood.ogm

running the program with that command line:

./seek blood.ogm 100 --gst-debug=\*:2

I get : 

WARN  (0x81f1528 - 0:00:00.901410000)             ogmparse(14233) gstogmparse.c(632):gst_ogm_parse_chain:<ogmvideoparse1> Already an existing pad ogmvideoparse1:src
Comment 1 Vincent Torri 2006-02-27 19:53:09 UTC
Created attachment 60254 [details]
test program
Comment 2 Tim-Philipp Müller 2006-03-02 12:37:21 UTC
Should be fixed now. Not sure why those stream markers appear multiple times within the stream instead of just at the beginning, but I guess we can't do much about that.

2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>

        * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
        (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
        (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
        (gst_ogm_parse_chain):
          Don't remove/re-add source pad if the new caps are the same as
          the old caps anyway (#333042). When removing source pad, don't
          unref it afterwards - we didn't ref it when adding. Sprinkle some
          GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
          after using gst_pad_get_parent(). Return downstream flow return
          value in chain function.