mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:56:14 +00:00
gst/quicktime/gstqtmux.c: Quiet a debugging message that I recently added.
Original commit message from CVS: * gst/quicktime/gstqtmux.c: Quiet a debugging message that I recently added.
This commit is contained in:
parent
b11186eba4
commit
71eacf835e
1 changed files with 6 additions and 1 deletions
|
@ -1044,7 +1044,7 @@ gst_qt_mux_add_buffer (GstQTMux * qtmux, GstQTPad * pad, GstBuffer * buf)
|
||||||
atom_trak_get_timescale (pad->trak), GST_SECOND);
|
atom_trak_get_timescale (pad->trak), GST_SECOND);
|
||||||
pts_offset = (gint64) (pts - last_dts);
|
pts_offset = (gint64) (pts - last_dts);
|
||||||
do_pts = TRUE;
|
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);
|
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;
|
GstQTMuxFormat format;
|
||||||
AtomInfo *ext_atom = NULL;
|
AtomInfo *ext_atom = NULL;
|
||||||
gboolean sync = FALSE;
|
gboolean sync = FALSE;
|
||||||
|
int par_num, par_den;
|
||||||
|
|
||||||
/* find stream data */
|
/* find stream data */
|
||||||
qtpad = (GstQTPad *) gst_pad_get_element_private (pad);
|
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)
|
if (value != NULL)
|
||||||
codec_data = gst_value_get_buffer (value);
|
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 */
|
/* FIXME: pixel-aspect-ratio */
|
||||||
|
|
||||||
qtpad->is_out_of_order = FALSE;
|
qtpad->is_out_of_order = FALSE;
|
||||||
|
|
Loading…
Reference in a new issue