gst/qtmux/gstqtmux.c: Quiet a debugging message that I recently added.

Original commit message from CVS:
* gst/qtmux/gstqtmux.c: Quiet a debugging message that I recently
added.
This commit is contained in:
David Schleef 2008-11-18 01:09:09 +00:00
parent 8ce409bd32
commit 6edbddd2d9
2 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-11-17 David Schleef <ds@schleef.org>
* gst/qtmux/gstqtmux.c: Quiet a debugging message that I recently
added.
2008-11-17 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* gst/rtpmanager/rtpsource.c: (get_clock_rate):

View file

@ -1044,7 +1044,7 @@ gst_qt_mux_add_buffer (GstQTMux * qtmux, GstQTPad * pad, GstBuffer * buf)
atom_trak_get_timescale (pad->trak), GST_SECOND);
pts_offset = (gint64) (pts - last_dts);
do_pts = TRUE;
GST_ERROR_OBJECT (qtmux, "Adding ctts entry for pad %s: %" G_GINT64_FORMAT,
GST_LOG_OBJECT (qtmux, "Adding ctts entry for pad %s: %" G_GINT64_FORMAT,
GST_PAD_NAME (pad->collect.pad), pts_offset);
}
@ -1384,6 +1384,7 @@ gst_qt_mux_video_sink_set_caps (GstPad * pad, GstCaps * caps)
GstQTMuxFormat format;
AtomInfo *ext_atom = NULL;
gboolean sync = FALSE;
int par_num, par_den;
/* find stream data */
qtpad = (GstQTPad *) gst_pad_get_element_private (pad);
@ -1417,6 +1418,10 @@ gst_qt_mux_video_sink_set_caps (GstPad * pad, GstCaps * caps)
if (value != NULL)
codec_data = gst_value_get_buffer (value);
par_num = 1;
par_den = 1;
gst_structure_get_fraction (structure, "pixel-aspect-ratio", &par_num,
&par_den);
/* FIXME: pixel-aspect-ratio */
qtpad->is_out_of_order = FALSE;