diff options
author | David Schleef <ds@schleef.org> | 2008-01-01 01:18:19 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2008-01-01 01:18:19 +0000 |
commit | 71814047036e4347ada045953b58030da5829262 (patch) | |
tree | e3f942497a9e3099a439a6bb841cad152a4afa82 /gst/videosignal | |
parent | fdd091e26a7aa2f73ed8c5f2b7c1554f8636ce7d (diff) | |
download | gst-plugins-bad-71814047036e4347ada045953b58030da5829262.tar.gz gst-plugins-bad-71814047036e4347ada045953b58030da5829262.tar.bz2 gst-plugins-bad-71814047036e4347ada045953b58030da5829262.zip |
ext/musicbrainz/gsttrm.c: Don't emit signiture when going to READY, because it might not be ready.
Original commit message from CVS:
* ext/musicbrainz/gsttrm.c:
Don't emit signiture when going to READY, because it might
not be ready.
* ext/nas/nassink.c:
Remove useless call that sleeps for 5 seconds. Yup, it calls
sleep(1) 5 times. Go NAS.
* gst/librfb/gstrfbsrc.c:
* gst/librfb/rfbdecoder.c:
Initialize our debug categories properly.
* gst/rawparse/gstrawparse.c:
Don't register element details for a non-element. Be much more
rude when subclass doesn't set a pad template (assert!). Don't
unref the pad template; we don't own it.
* gst/videosignal/gstvideoanalyse.c:
Initialize debug category.
* tests/check/Makefile.am:
Ignore nassink element in tests because it has unavoidable
long timeouts.
Diffstat (limited to 'gst/videosignal')
-rw-r--r-- | gst/videosignal/gstvideoanalyse.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/videosignal/gstvideoanalyse.c b/gst/videosignal/gstvideoanalyse.c index d0cdf70c..05b13ef5 100644 --- a/gst/videosignal/gstvideoanalyse.c +++ b/gst/videosignal/gstvideoanalyse.c @@ -348,6 +348,9 @@ gst_video_analyse_get_type (void) video_analyse_type = g_type_register_static (GST_TYPE_VIDEO_FILTER, "GstVideoAnalyse", &video_analyse_info, 0); + + GST_DEBUG_CATEGORY_INIT (video_analyse_debug, "videoanalyse", 0, + "Video Analyse element"); } return video_analyse_type; } |