mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
oggdemux: fix compiler warning
This commit is contained in:
parent
848711706b
commit
ab921eec11
1 changed files with 2 additions and 2 deletions
|
@ -921,8 +921,8 @@ gst_ogg_pad_submit_packet (GstOggPad * pad, ogg_packet * packet)
|
||||||
"from granpos %" G_GINT64_FORMAT " (granule %" G_GINT64_FORMAT ", "
|
"from granpos %" G_GINT64_FORMAT " (granule %" G_GINT64_FORMAT ", "
|
||||||
"accumulated granule %" G_GINT64_FORMAT,
|
"accumulated granule %" G_GINT64_FORMAT,
|
||||||
GST_TIME_ARGS (pad->start_time), GST_TIME_ARGS (pad->start_time),
|
GST_TIME_ARGS (pad->start_time), GST_TIME_ARGS (pad->start_time),
|
||||||
gst_ogg_stream_get_media_type (&pad->map), packet->granulepos,
|
gst_ogg_stream_get_media_type (&pad->map),
|
||||||
granule, pad->map.accumulated_granule);
|
(gint64) packet->granulepos, granule, pad->map.accumulated_granule);
|
||||||
} else {
|
} else {
|
||||||
packet->granulepos = gst_ogg_stream_granule_to_granulepos (&pad->map,
|
packet->granulepos = gst_ogg_stream_granule_to_granulepos (&pad->map,
|
||||||
pad->map.accumulated_granule, pad->keyframe_granule);
|
pad->map.accumulated_granule, pad->keyframe_granule);
|
||||||
|
|
Loading…
Reference in a new issue