platform/upstream/gstreamer.git
13 years agominiobject: fix debug
Wim Taymans [Wed, 6 Apr 2011 14:37:40 +0000 (16:37 +0200)]
miniobject: fix debug

13 years agoMerge branch 'master' into 0.11
Sebastian Dröge [Wed, 6 Apr 2011 12:20:59 +0000 (14:20 +0200)]
Merge branch 'master' into 0.11

13 years agobus: Add private API to set a GstBus in child mode
Sebastian Dröge [Wed, 6 Apr 2011 12:06:49 +0000 (14:06 +0200)]
bus: Add private API to set a GstBus in child mode

This is used by GstBin to create a child bus without
a socketpair because child buses will always work
synchronous. Otherwise too many sockets could be
created and the limit of file descriptors for the
process could be reached.

Fixes bug #646624.

13 years agoRevert "bus: Only create the signalling socket pair when required"
Sebastian Dröge [Wed, 6 Apr 2011 11:56:49 +0000 (13:56 +0200)]
Revert "bus: Only create the signalling socket pair when required"

This reverts commit 4bf8f1524f6e3374b3f3bc57322337723d06b928.

13 years agoRevert "bus: Check if pending messages are in the queue"
Sebastian Dröge [Wed, 6 Apr 2011 11:56:46 +0000 (13:56 +0200)]
Revert "bus: Check if pending messages are in the queue"

This reverts commit bd1c40011434c1efaa696dc98ef855ef9cce9b28.

13 years agochecks: make tests_many_bins in bin unit test a bit faster
Tim-Philipp Müller [Wed, 6 Apr 2011 10:38:57 +0000 (11:38 +0100)]
checks: make tests_many_bins in bin unit test a bit faster

Not doing expensive checks when linking elements makes things
much faster.

13 years agochecks: add some queues to test_many_bins unit test
Tim-Philipp Müller [Wed, 6 Apr 2011 10:30:18 +0000 (11:30 +0100)]
checks: add some queues to test_many_bins unit test

To limit the number of calls in a row per thread.

13 years agobus: Check if pending messages are in the queue
Sebastian Dröge [Wed, 6 Apr 2011 10:03:18 +0000 (12:03 +0200)]
bus: Check if pending messages are in the queue

We can't rely completely on the poll fd because the fd might be
created after messages were posted to the bus.

13 years agovalue: GstDate/GDate has a abbreviation now
Sebastian Dröge [Wed, 6 Apr 2011 09:45:27 +0000 (11:45 +0200)]
value: GstDate/GDate has a abbreviation now

13 years agochecks: add GstBin unit test that creates a lot of bins
Tim-Philipp Müller [Sun, 3 Apr 2011 15:11:50 +0000 (16:11 +0100)]
checks: add GstBin unit test that creates a lot of bins

Currently fails (in normal circumstances) because we create a
socket pair for each bin's bus and exhaust the number of available
file descriptors.

https://bugzilla.gnome.org/show_bug.cgi?id=646624

13 years agobus: Only create the signalling socket pair when required
Sebastian Dröge [Tue, 5 Apr 2011 14:22:48 +0000 (16:22 +0200)]
bus: Only create the signalling socket pair when required

Otherwise a new one would be created for every single bus and
the process could easily run out of file descriptors.

Fixes bug #646624.

13 years agostructure: Add date as a type abbreviation of GDate
Sebastian Dröge [Tue, 5 Apr 2011 12:36:43 +0000 (14:36 +0200)]
structure: Add date as a type abbreviation of GDate

See bug #646696.

13 years agoAutomatic update of common submodule
Stefan Kost [Mon, 4 Apr 2011 12:56:30 +0000 (15:56 +0300)]
Automatic update of common submodule

From 1ccbe09 to c3cafe1

13 years agoMerge branch 'master' into 0.11
Wim Taymans [Mon, 4 Apr 2011 09:17:28 +0000 (11:17 +0200)]
Merge branch 'master' into 0.11

13 years agogstpoll: retry reading the control socket to release properly all wakeups
Andoni Morales Alastruey [Mon, 4 Apr 2011 01:33:46 +0000 (03:33 +0200)]
gstpoll: retry reading the control socket to release properly all wakeups

if set->control_pending is set to 0 but we didn't not succed reading
the control socket, future calls to gst_poll_wait() will be awaiken
by the control socket which will not be released properly because
set->control_pending is already 0, causing an infinite loop.

13 years agostructure: Don't allow invalid GDates in all structures and don't allow NULL GDates...
Sebastian Dröge [Mon, 4 Apr 2011 08:18:14 +0000 (10:18 +0200)]
structure: Don't allow invalid GDates in all structures and don't allow NULL GDates in taglists

Some code (e.g. gstvorbistag.c) assumes non-NULL GDates in taglists and
explodes otherwise and NULL or invalid GDates don't make much sense anyway.

13 years agopoll: don't call WSAWaitForMultipleEvents with no events
Thomas Kristensen [Fri, 25 Mar 2011 14:56:07 +0000 (15:56 +0100)]
poll: don't call WSAWaitForMultipleEvents with no events

Fixes error caught by Microsoft Application Verifier.

13 years agodocs: add pointer to part-seeking.txt design docs to event seek flags docs
Tim-Philipp Müller [Sun, 3 Apr 2011 15:18:54 +0000 (16:18 +0100)]
docs: add pointer to part-seeking.txt design docs to event seek flags docs

13 years agochecks: ignore new funnel unit test binary
Tim-Philipp Müller [Sun, 3 Apr 2011 15:18:14 +0000 (16:18 +0100)]
checks: ignore new funnel unit test binary

13 years agoutils: Avoid using "type" as name for a variable and a macro argument in GST_BOILERPLATE
Bastien Nocera [Sat, 2 Apr 2011 13:51:18 +0000 (14:51 +0100)]
utils: Avoid using "type" as name for a variable and a macro argument in GST_BOILERPLATE

This caused "re-declaration" problems.
./clutter-gst-video-sink.c: In function ‘clutter_gst_video_sink_init_interfaces’:
./clutter-gst-video-sink.c:231:1: warning: declaration of ‘ClutterGstVideoSink’ shadows a global declaration [-Wshadow]
./clutter-gst-video-sink.h:64:44: warning: shadowed declaration is here [-Wshadow]

https://bugzilla.gnome.org/show_bug.cgi?id=646531

13 years agoelement: When requesting an existing pad print a g_critical() instead of using an...
Sebastian Dröge [Fri, 1 Apr 2011 11:56:09 +0000 (13:56 +0200)]
element: When requesting an existing pad print a g_critical() instead of using an assertion

Some applications are requesting the same pad name multiple times
and the behaviour is undefined and different from element to element
but we don't want to break applications that work just fine.

In 0.11 this check should be an assertion again, although elements
have to do manual checking if the pad already exists again because
it can't be done in a threadsafe way here.

13 years agoelement: Use gint64/guint64 string parsing functions
Sebastian Dröge [Fri, 1 Apr 2011 11:53:39 +0000 (13:53 +0200)]
element: Use gint64/guint64 string parsing functions

And check that the requested pad names are inside the valid
gint/guint range.

13 years agoelement: strto[u]l() returns a g[u]long
Josep Torra [Fri, 1 Apr 2011 11:51:31 +0000 (13:51 +0200)]
element: strto[u]l() returns a g[u]long

13 years agoMerge branch 'master' into 0.11
Wim Taymans [Fri, 1 Apr 2011 08:47:48 +0000 (10:47 +0200)]
Merge branch 'master' into 0.11

13 years agodocs: update porting guide with bufferlist changes
Wim Taymans [Fri, 1 Apr 2011 08:46:06 +0000 (10:46 +0200)]
docs: update porting guide with bufferlist changes

13 years agodesign docs: document expected behaviour for ACCURATE and KEY_UNIT seek flags
Tim-Philipp Müller [Thu, 31 Mar 2011 18:25:30 +0000 (19:25 +0100)]
design docs: document expected behaviour for ACCURATE and KEY_UNIT seek flags

13 years agobytewriter: don't add NULL data
Wim Taymans [Thu, 31 Mar 2011 16:39:57 +0000 (18:39 +0200)]
bytewriter: don't add NULL data

13 years agoMerge branch 'master' into 0.11
Wim Taymans [Thu, 31 Mar 2011 15:55:22 +0000 (17:55 +0200)]
Merge branch 'master' into 0.11

Conflicts:
tests/check/gst/struct_x86_64.h

13 years agobufferlist: simplify bufferlists
Wim Taymans [Thu, 31 Mar 2011 15:51:02 +0000 (17:51 +0200)]
bufferlist: simplify bufferlists

We now have multiple memory blocks as part of the buffers and we can therefore
reduce the bufferlist to a simple array of buffers.

13 years agogstabi: Add some new structures for x86-64
Sebastian Dröge [Thu, 31 Mar 2011 08:53:03 +0000 (10:53 +0200)]
gstabi: Add some new structures for x86-64

13 years agolibsabi: Add lots of new structures for x86-64
Sebastian Dröge [Thu, 31 Mar 2011 08:46:40 +0000 (10:46 +0200)]
libsabi: Add lots of new structures for x86-64

13 years agodocs: update porting doc
Wim Taymans [Thu, 31 Mar 2011 08:31:22 +0000 (10:31 +0200)]
docs: update porting doc

13 years agofunnel: fix for API change
Wim Taymans [Wed, 30 Mar 2011 18:05:26 +0000 (20:05 +0200)]
funnel: fix for API change

13 years agoMerge branch 'master' into 0.11-fdo
Wim Taymans [Wed, 30 Mar 2011 17:58:52 +0000 (19:58 +0200)]
Merge branch 'master' into 0.11-fdo

Conflicts:
docs/plugins/gstreamer-plugins.hierarchy
gst/gstelement.c

13 years agodocs: update docs
Wim Taymans [Wed, 30 Mar 2011 17:01:13 +0000 (19:01 +0200)]
docs: update docs

13 years agodocs: update documentation
Wim Taymans [Wed, 30 Mar 2011 16:45:08 +0000 (18:45 +0200)]
docs: update documentation

13 years agobuffer: more API tweaks
Wim Taymans [Wed, 30 Mar 2011 14:47:55 +0000 (16:47 +0200)]
buffer: more API tweaks

_trim -> _resize
_create_sub -> copy_region

13 years agodesign: update design docs
Wim Taymans [Wed, 30 Mar 2011 13:29:39 +0000 (15:29 +0200)]
design: update design docs

13 years agodesign: update docs
Wim Taymans [Wed, 30 Mar 2011 11:04:34 +0000 (13:04 +0200)]
design: update docs

13 years agomultiqueue: Make assignment of queue IDs and pad names threadsafe
Sebastian Dröge [Wed, 30 Mar 2011 08:48:47 +0000 (10:48 +0200)]
multiqueue: Make assignment of queue IDs and pad names threadsafe

Also add a test for naming pads by the caller and return NULL
when requesting an already existing pad.

13 years agomultiqueue: Set the single queue ID to the ID of the requested pad if one was given...
Andreas Frisch [Tue, 29 Mar 2011 21:58:43 +0000 (23:58 +0200)]
multiqueue: Set the single queue ID to the ID of the requested pad if one was given by the caller

13 years agomemory: further memory tweaking
Wim Taymans [Tue, 29 Mar 2011 17:17:55 +0000 (19:17 +0200)]
memory: further memory tweaking

Allow for automatic merging of memory block in the _map function and automatic
freeing of the temporary memory.
Remove some unneeded functions.
Add possibility to force writable spanned memory.

13 years agobuffer: implement COPY_MERGE
Wim Taymans [Tue, 29 Mar 2011 15:17:46 +0000 (17:17 +0200)]
buffer: implement COPY_MERGE

13 years agobuffer: clean up _span and add more g_return_if..
Wim Taymans [Tue, 29 Mar 2011 14:52:21 +0000 (16:52 +0200)]
buffer: clean up _span and add more g_return_if..

13 years agoelement: Fix sanity checks for request pad templates without %
Sebastian Dröge [Tue, 29 Mar 2011 14:22:46 +0000 (16:22 +0200)]
element: Fix sanity checks for request pad templates without %

13 years agobuffer: optimize memory handling
Wim Taymans [Tue, 29 Mar 2011 11:51:25 +0000 (13:51 +0200)]
buffer: optimize memory handling

13 years agoelement: Add some more sanity checks to the pad name checking of request pads in...
Sebastian Dröge [Tue, 29 Mar 2011 09:57:58 +0000 (11:57 +0200)]
element: Add some more sanity checks to the pad name checking of request pads in all cases

Especially check if a pad with that name already exists.

13 years agoelement: Check %u too when trying to find a pad template for a request pad
Sebastian Dröge [Tue, 29 Mar 2011 09:52:06 +0000 (11:52 +0200)]
element: Check %u too when trying to find a pad template for a request pad

13 years agobuffer: move implementation details in private struct
Wim Taymans [Tue, 29 Mar 2011 09:31:30 +0000 (11:31 +0200)]
buffer: move implementation details in private struct

13 years agomultiqueue: Fix arbitrary sink + source pad naming
Fraxinas [Mon, 28 Mar 2011 19:01:13 +0000 (21:01 +0200)]
multiqueue: Fix arbitrary sink + source pad naming

Use the string provided by the caller for the sinkpad name
if possible. Note that all sanity checking for this name
is already done in GstElement.

Fixes Bug #645931

13 years agofunnel: Add some more documentation about the behaviour of funnel
Sebastian Dröge [Tue, 29 Mar 2011 09:18:36 +0000 (11:18 +0200)]
funnel: Add some more documentation about the behaviour of funnel

13 years agofunnel: Send a newsegment event after flush-stop
Sebastian Dröge [Tue, 29 Mar 2011 09:08:57 +0000 (11:08 +0200)]
funnel: Send a newsegment event after flush-stop

13 years agofunnel: Some random cleanup
Sebastian Dröge [Tue, 29 Mar 2011 09:07:48 +0000 (11:07 +0200)]
funnel: Some random cleanup

13 years agofunnel: Use a GstPad subclass for the sinkpads instead of using the pad's element...
Sebastian Dröge [Tue, 29 Mar 2011 08:56:00 +0000 (10:56 +0200)]
funnel: Use a GstPad subclass for the sinkpads instead of using the pad's element private data

13 years agofunnel: Integrate into the build system and rename the types
Sebastian Dröge [Tue, 29 Mar 2011 08:42:31 +0000 (10:42 +0200)]
funnel: Integrate into the build system and rename the types

13 years agofunnel: Import funnel element from farsight2
Sebastian Dröge [Tue, 29 Mar 2011 08:39:42 +0000 (10:39 +0200)]
funnel: Import funnel element from farsight2

13 years agobuffer: more buffer updates
Wim Taymans [Tue, 29 Mar 2011 09:07:36 +0000 (11:07 +0200)]
buffer: more buffer updates

13 years agodefs: fix defs
Wim Taymans [Mon, 28 Mar 2011 18:20:39 +0000 (20:20 +0200)]
defs: fix defs

13 years agoMerge branch 'master' into 0.11-fdo
Wim Taymans [Mon, 28 Mar 2011 18:11:20 +0000 (20:11 +0200)]
Merge branch 'master' into 0.11-fdo

Conflicts:
gst/gst.c
libs/gst/base/gstcollectpads.c

13 years agobuffer: fix subbuffers
Wim Taymans [Mon, 28 Mar 2011 17:19:44 +0000 (19:19 +0200)]
buffer: fix subbuffers

13 years agobuffer: implemet trim and set_size
Wim Taymans [Mon, 28 Mar 2011 14:40:24 +0000 (16:40 +0200)]
buffer: implemet trim and set_size

13 years agobuffer: more fixes
Wim Taymans [Mon, 28 Mar 2011 13:52:17 +0000 (15:52 +0200)]
buffer: more fixes

13 years agobuffer: add more methods
Wim Taymans [Mon, 28 Mar 2011 08:28:02 +0000 (10:28 +0200)]
buffer: add more methods

13 years agogst: add class init
Wim Taymans [Thu, 24 Mar 2011 20:21:00 +0000 (21:21 +0100)]
gst: add class init

13 years agobuffer: fix remaining unit tests
Wim Taymans [Thu, 24 Mar 2011 20:18:52 +0000 (21:18 +0100)]
buffer: fix remaining unit tests

13 years agobuffer: fix unit test
Wim Taymans [Thu, 24 Mar 2011 19:09:02 +0000 (20:09 +0100)]
buffer: fix unit test

13 years agomemory: remove memory metadata again
Wim Taymans [Thu, 24 Mar 2011 12:01:00 +0000 (13:01 +0100)]
memory: remove memory metadata again

13 years agomemory: more fixes
Wim Taymans [Thu, 24 Mar 2011 10:49:46 +0000 (11:49 +0100)]
memory: more fixes

Automatically make the memory of a buffer writable when the buffer is writable
and the memory is asked to mapped WRITE.
Add docs

13 years agomemory: more work on implementing buffer memory
Wim Taymans [Wed, 23 Mar 2011 19:52:27 +0000 (20:52 +0100)]
memory: more work on implementing buffer memory

13 years agomemory: more work on porting the unit tests
Wim Taymans [Tue, 22 Mar 2011 19:51:06 +0000 (20:51 +0100)]
memory: more work on porting the unit tests

13 years agotests: make some tests compile
Wim Taymans [Mon, 21 Mar 2011 18:15:27 +0000 (19:15 +0100)]
tests: make some tests compile

13 years agomemory: port code to new buffer data API
Wim Taymans [Mon, 21 Mar 2011 17:13:55 +0000 (18:13 +0100)]
memory: port code to new buffer data API

13 years agomemory: more fixes
Wim Taymans [Mon, 21 Mar 2011 12:07:42 +0000 (13:07 +0100)]
memory: more fixes

Fix span and is_span
Implement buffer memory

13 years agoWIP use memory in buffer
Wim Taymans [Mon, 21 Mar 2011 08:51:53 +0000 (09:51 +0100)]
WIP use memory in buffer

13 years agomemory: more improvements
Wim Taymans [Sun, 20 Mar 2011 10:42:39 +0000 (11:42 +0100)]
memory: more improvements

13 years agomemory: more memory improvements
Wim Taymans [Sat, 19 Mar 2011 09:45:37 +0000 (10:45 +0100)]
memory: more memory improvements

13 years agomemory: add more memory operations
Wim Taymans [Fri, 18 Mar 2011 20:45:39 +0000 (21:45 +0100)]
memory: add more memory operations

13 years agomemory: add memory implementation
Wim Taymans [Fri, 18 Mar 2011 18:28:17 +0000 (19:28 +0100)]
memory: add memory implementation

13 years agomemory: add API for handling memory blocks
Wim Taymans [Fri, 18 Mar 2011 17:35:42 +0000 (18:35 +0100)]
memory: add API for handling memory blocks

Adds some API to handle memory blocks.

13 years agometa: fix docs
Wim Taymans [Tue, 8 Mar 2011 18:18:24 +0000 (18:18 +0000)]
meta: fix docs

13 years agobasesrc: Return FALSE if we don't handle an event
Arun Raghavan [Mon, 28 Mar 2011 15:51:00 +0000 (21:21 +0530)]
basesrc: Return FALSE if we don't handle an event

basesrc's default event handler returns TRUE regardless of whether the
event is handled or not. This fixes the handler to conform with the
expected behaviour (which is to only return TRUE when the event has
actually benn handled). gst_bin_do_latency_func() depended on this
(incorrect) behaviour, and is now modified as well.

(Remaining 1-liner change in gstbasesrc.c is to keep gst-indent happy)

13 years agoAutomatic update of common submodule
Sebastian Dröge [Fri, 25 Mar 2011 21:08:41 +0000 (22:08 +0100)]
Automatic update of common submodule

From 193b717 to 1ccbe09

13 years agoAutomatic update of common submodule
Stefan Kost [Fri, 25 Mar 2011 12:55:39 +0000 (14:55 +0200)]
Automatic update of common submodule

From b77e2bf to 193b717

13 years agoAutomatic update of common submodule
Sebastian Dröge [Fri, 25 Mar 2011 08:27:58 +0000 (09:27 +0100)]
Automatic update of common submodule

From d8814b6 to b77e2bf

13 years agoAutomatic update of common submodule
Sebastian Dröge [Fri, 25 Mar 2011 07:59:37 +0000 (08:59 +0100)]
Automatic update of common submodule

From 6aaa286 to d8814b6

13 years agoAutomatic update of common submodule
Stefan Kost [Thu, 24 Mar 2011 16:48:41 +0000 (18:48 +0200)]
Automatic update of common submodule

From 6aec6b9 to 6aaa286

13 years agodocs: fix some gtk-doc warnings
Stefan Kost [Thu, 24 Mar 2011 16:27:09 +0000 (18:27 +0200)]
docs: fix some gtk-doc warnings

Document the queue leaky enums.

13 years agoqueue2: set max value for to the matching one for the datatype
Stefan Kost [Thu, 24 Mar 2011 16:25:08 +0000 (18:25 +0200)]
queue2: set max value for to the matching one for the datatype

The property is guint64, so use G_MAXUINT64 instead of G_MAXUINT.

13 years agodocs: cleanup and xref fixes
Stefan Kost [Thu, 24 Mar 2011 11:22:57 +0000 (13:22 +0200)]
docs: cleanup and xref fixes

Deal with the hints from gtk-doc and fix the xrefs. Apply a work-around for ()
precedence over @. Move "MT Safe" text to doc body in many places. Trim eol
whitespaces.

13 years agobasesink: print flow return as a name in debug log
Stefan Kost [Wed, 23 Mar 2011 14:42:24 +0000 (16:42 +0200)]
basesink: print flow return as a name in debug log

13 years agodocs: do xrefs for non installed books too
Stefan Kost [Wed, 23 Mar 2011 15:13:58 +0000 (17:13 +0200)]
docs: do xrefs for non installed books too

Get the xrefs from the builddir for the books in the same packages. This fixes
the cross references if one does not have the docs already installed.

13 years agobasesrc: Keep downstream caps order when fixating
Edward Hervey [Mon, 19 Apr 2010 18:39:53 +0000 (20:39 +0200)]
basesrc: Keep downstream caps order when fixating

This allows use to use the first intersecting format prefered by downstream.

https://bugzilla.gnome.org/show_bug.cgi?id=617045

13 years agobasetransform: Retain caps order when getting caps
Edward Hervey [Mon, 19 Apr 2010 18:40:56 +0000 (20:40 +0200)]
basetransform: Retain caps order when getting caps

If the element gave us caps in a specific order, let's retain that
by intersecting against the template but retaining the order given
by the element.

https://bugzilla.gnome.org/show_bug.cgi?id=617045

13 years agotests: caps: Tests for the new caps intersection mode
Thiago Santos [Fri, 25 Feb 2011 13:25:26 +0000 (10:25 -0300)]
tests: caps: Tests for the new caps intersection mode

Adds test cases for the caps 'first' intersect mode
Adds another test for the 'zigzag' mode

Fixes #617045

13 years agogstcaps: new API : gst_caps_intersect_full
Edward Hervey [Fri, 25 Feb 2011 11:50:12 +0000 (08:50 -0300)]
gstcaps: new API : gst_caps_intersect_full

Just like gst_caps_intersect, but adds a new parameter 'mode'
that allows selecting the intersection algorithm to use.

Currently we have GST_CAPS_INTERSECT_MODE_ZIG_ZAG (default) and
GST_CAPS_INTERSECT_MODE_FIRST.

API: gst_caps_intersect_full
API: GstCapsIntersectMode
API: GST_CAPS_INTERSECT_MODE_ZIG_ZAG
API: GST_CAPS_INTERSECT_MODE_FIRST

https://bugzilla.gnome.org/show_bug.cgi?id=617045

13 years agotests: add libscpp unit test to make sure g++ likes our library headers
Tim-Philipp Müller [Sat, 12 Mar 2011 17:01:39 +0000 (17:01 +0000)]
tests: add libscpp unit test to make sure g++ likes our library headers

13 years agobytereader, bytewriter: fix up inline functions to make g++ happy
Tim-Philipp Müller [Sat, 12 Mar 2011 16:58:01 +0000 (16:58 +0000)]
bytereader, bytewriter: fix up inline functions to make g++ happy

gstbytereader.h: In function ‘guint8* gst_byte_reader_dup_data_unchecked(GstByteReader*, guint)’:
gstbytereader.h:249:75: error: invalid conversion from ‘void*’ to ‘guint8*’
gstbytewriter.h: In function ‘gboolean _gst_byte_writer_ensure_free_space_inline(GstByteWriter*, guint)’:
gstbytewriter.h:196:75: error: invalid conversion from ‘void*’ to ‘guint8*’

https://bugzilla.gnome.org/show_bug.cgi?id=645595

13 years agogstelement: Fix typo in the docs
Thiago Santos [Tue, 22 Mar 2011 19:26:56 +0000 (16:26 -0300)]
gstelement: Fix typo in the docs

GST_ELEMENT_INFO will post a INFO message, not a WARNING

13 years agotagsetter: Removing unused debug category
Thiago Santos [Fri, 18 Mar 2011 11:22:23 +0000 (08:22 -0300)]
tagsetter: Removing unused debug category

tagsetter's debug category had a typo and was unused. Removing it.

13 years agoautogen: wingo signed comment
Luis de Bethencourt [Fri, 18 Mar 2011 18:34:57 +0000 (19:34 +0100)]
autogen: wingo signed comment