mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
ext/mad/gstid3tag.c: Remove lingering reference to GstID3Demux
Original commit message from CVS: * ext/mad/gstid3tag.c: (gst_id3_tag_get_type): Remove lingering reference to GstID3Demux * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes): Don't output debug saying padding streams are unknown type, because they're not
This commit is contained in:
parent
3d13141529
commit
f8ccb04412
3 changed files with 13 additions and 6 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2005-12-30 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
|
* ext/mad/gstid3tag.c: (gst_id3_tag_get_type):
|
||||||
|
Remove lingering reference to GstID3Demux
|
||||||
|
|
||||||
|
* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
|
||||||
|
Don't output debug saying padding streams are unknown type,
|
||||||
|
because they're not
|
||||||
|
|
||||||
2005-12-27 Martin Soto <martinsoto@users.sourceforge.net>
|
2005-12-27 Martin Soto <martinsoto@users.sourceforge.net>
|
||||||
|
|
||||||
* gst/mpegstream/gstdvddemux.c (AUDIO_CAPS)
|
* gst/mpegstream/gstdvddemux.c (AUDIO_CAPS)
|
||||||
|
|
|
@ -181,12 +181,10 @@ static GstElementClass *parent_class = NULL;
|
||||||
GType
|
GType
|
||||||
gst_id3_tag_get_type (guint type)
|
gst_id3_tag_get_type (guint type)
|
||||||
{
|
{
|
||||||
static GType id3_tag_type[4] = { 0, 0, 0, 0 };
|
static GType id3_tag_type[3] = { 0, 0, 0 };
|
||||||
static gchar *name[4] = { "GstID3TagBase", "GstID3Demux", "GstID3Mux",
|
static gchar *name[3] = { "GstID3TagBase", "GstID3Mux", "GstID3Tag" };
|
||||||
"GstID3Tag"
|
|
||||||
};
|
|
||||||
|
|
||||||
g_assert (type < 4);
|
g_assert (type < 3);
|
||||||
|
|
||||||
if (!id3_tag_type[type]) {
|
if (!id3_tag_type[type]) {
|
||||||
GTypeInfo id3_tag_info = {
|
GTypeInfo id3_tag_info = {
|
||||||
|
|
|
@ -854,7 +854,7 @@ gst_mpeg_demux_parse_pes (GstMPEGParse * mpeg_parse, GstBuffer * buffer)
|
||||||
id - 0xE0, GST_MPEG_DEMUX_VIDEO_MPEG, &mpeg_version);
|
id - 0xE0, GST_MPEG_DEMUX_VIDEO_MPEG, &mpeg_version);
|
||||||
ret = CLASS (mpeg_demux)->send_subbuffer (mpeg_demux, outstream, buffer,
|
ret = CLASS (mpeg_demux)->send_subbuffer (mpeg_demux, outstream, buffer,
|
||||||
timestamp, headerlen + 4, datalen);
|
timestamp, headerlen + 4, datalen);
|
||||||
} else {
|
} else if (id != 0xBE /* Ignore padding stream */ ) {
|
||||||
GST_WARNING_OBJECT (mpeg_demux, "unknown stream id 0x%02x", id);
|
GST_WARNING_OBJECT (mpeg_demux, "unknown stream id 0x%02x", id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue