[gstreamer-bugs] [Bug 311486] [oggmux] theora bos must come before any audio bos pages
GStreamer (bugzilla.gnome.org)
bugzilla-daemon at bugzilla.gnome.org
Mon Mar 6 07:12:33 PST 2006
Do not reply to this via email (we are currently unable to handle email
responses and they get discarded). You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=311486
GStreamer | gst-plugins-base | Ver: HEAD CVS
------- Comment #3 from Tim-Philipp Müller 2006-03-06 15:12 UTC -------
update: as a temporary workaround, the 'theora-BOS-comes-first' has been
hard-coded into oggmux now, but this still needs fixing in a more general way,
so keeping bug open.
/* quick hack: put theora pages at the front.
* Ideally, we would have a settable enum for which Ogg
* profile we work with, and order based on that */
if (strcmp (gst_structure_get_name (structure), "video/x-theora") == 0) {
GST_DEBUG_OBJECT (thepad, "putting Theora page at the front");
hbufs = g_list_prepend (hbufs, hbuf);
} else {
hbufs = g_list_append (hbufs, hbuf);
}
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
More information about the Gstreamer-bugs
mailing list