Just make it compile with --disable-gst-debug.

Original commit message from CVS:
Just make it compile with --disable-gst-debug.
This commit is contained in:
Edgard Lima 2006-02-03 18:07:35 +00:00
parent 7ddee515d2
commit 789a7b20ac
3 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
* ext/flac/gstflacenc.c:
* gst/matroska/ebml-read.c:
Just make it compile with --disable-gst-debug.
2006-02-03 Jan Schmidt <thaytan@mad.scientist.com>
* gst/id3demux/id3v2frames.c: (parse_text_identification_frame),

View file

@ -509,7 +509,9 @@ gst_flac_enc_seek_callback (const FLAC__SeekableStreamEncoder * encoder,
absolute_byte_offset, GST_BUFFER_OFFSET_NONE, 0);
if ((peerpad = gst_pad_get_peer (flacenc->srcpad))) {
#ifndef GST_DISABLE_GST_DEBUG
gboolean ret = gst_pad_send_event (peerpad, event);
#endif
gst_object_unref (peerpad);

View file

@ -609,7 +609,10 @@ gboolean
gst_ebml_read_utf8 (GstEbmlRead * ebml, guint32 * id, gchar ** str)
{
gboolean ret;
#ifndef GST_DISABLE_GST_DEBUG
guint64 oldoff = ebml->offset;
#endif
ret = gst_ebml_read_ascii (ebml, id, str);