mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
ext/flac/gstflacenc.c: Actually provide the variables required for the format string.
Original commit message from CVS: * ext/flac/gstflacenc.c: (gst_flac_enc_check_discont): Actually provide the variables required for the format string.
This commit is contained in:
parent
ba69194f33
commit
530c36d9e7
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-08-09 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
||||
* ext/flac/gstflacenc.c: (gst_flac_enc_check_discont):
|
||||
Actually provide the variables required for the format string.
|
||||
|
||||
2008-08-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
||||
* gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
|
||||
|
|
|
@ -1125,7 +1125,8 @@ gst_flac_enc_check_discont (GstFlacEnc * flacenc, GstClockTime expected,
|
|||
GST_ELEMENT_WARNING (flacenc, STREAM, FORMAT, (NULL),
|
||||
("Stream discontinuity detected (wanted %" GST_TIME_FORMAT " got %"
|
||||
GST_TIME_FORMAT "). The output will have wrong timestamps,"
|
||||
" consider using audiorate to handle discontinuities"));
|
||||
" consider using audiorate to handle discontinuities",
|
||||
GST_TIME_ARGS (expected), GST_TIME_ARGS (timestamp)));
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue