diff --git a/ChangeLog b/ChangeLog index 3a4768e1ef..0ef020dc0b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-02-03 Edgard Lima + + * ext/flac/gstflacenc.c: + * gst/matroska/ebml-read.c: + Just make it compile with --disable-gst-debug. + 2006-02-03 Jan Schmidt * gst/id3demux/id3v2frames.c: (parse_text_identification_frame), diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c index 9a33104d43..d6c1e8de22 100644 --- a/ext/flac/gstflacenc.c +++ b/ext/flac/gstflacenc.c @@ -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); diff --git a/gst/matroska/ebml-read.c b/gst/matroska/ebml-read.c index db8606aac3..ce11b9068f 100644 --- a/gst/matroska/ebml-read.c +++ b/gst/matroska/ebml-read.c @@ -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);