mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed out in the header file and shouldn't be listed in the docs.
Original commit message from CVS: * docs/libs/gst-plugins-base-libs-sections.txt: * gst-libs/gst/cdda/gstcddabasesrc.h: Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed out in the header file and shouldn't be listed in the docs. * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk): Fix it so that it doesn't crash in the debug statement.
This commit is contained in:
parent
cade791150
commit
5288476e31
4 changed files with 12 additions and 3 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* docs/libs/gst-plugins-base-libs-sections.txt:
|
||||
* gst-libs/gst/cdda/gstcddabasesrc.h:
|
||||
Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
|
||||
out in the header file and shouldn't be listed in the docs.
|
||||
|
||||
* gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
|
||||
Fix it so that it doesn't crash in the debug statement.
|
||||
|
||||
2006-06-16 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* docs/libs/Makefile.am:
|
||||
|
|
|
@ -219,7 +219,6 @@ GST_TAG_CDDA_CDDB_DISCID
|
|||
GST_TAG_CDDA_CDDB_DISCID_FULL
|
||||
GST_TAG_CDDA_MUSICBRAINZ_DISCID
|
||||
GST_TAG_CDDA_MUSICBRAINZ_DISCID_FULL
|
||||
GST_TAG_CDDA_TRACK_TAGS
|
||||
<SUBSECTION Standard>
|
||||
GST_CDDA_BASE_SRC
|
||||
GST_CDDA_BASE_SRC_CLASS
|
||||
|
|
|
@ -166,7 +166,7 @@ gboolean gst_cdda_base_src_add_track (GstCddaBaseSrc * src,
|
|||
#define GST_TAG_CDDA_MUSICBRAINZ_DISCID_FULL "musicbrainz-discid-full"
|
||||
|
||||
#if 0
|
||||
/**
|
||||
/*
|
||||
* GST_TAG_CDDA_TRACK_TAGS:
|
||||
*
|
||||
* Tag details for all available tracks
|
||||
|
|
|
@ -69,7 +69,7 @@ skip_junk:
|
|||
gst_buffer_unref (buf);
|
||||
|
||||
GST_DEBUG_OBJECT (element, "fourcc=%" GST_FOURCC_FORMAT ", size=%u",
|
||||
GST_FOURCC_ARGS (tag), size);
|
||||
GST_FOURCC_ARGS (*tag), size);
|
||||
|
||||
/* skip 'JUNK' chunks */
|
||||
if (*tag == GST_RIFF_TAG_JUNK) {
|
||||
|
|
Loading…
Reference in a new issue