mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
qtmux: remove one G_UNLIKELY for user property
Using G_UNLIKELY on user properties isn't nice, specially when that is the default option.
This commit is contained in:
parent
782fc78d57
commit
ed3adece77
1 changed files with 1 additions and 1 deletions
|
@ -2087,7 +2087,7 @@ gst_qt_mux_add_buffer (GstQTMux * qtmux, GstQTPad * pad, GstBuffer * buf)
|
|||
|
||||
again:
|
||||
last_buf = pad->last_buf;
|
||||
if (G_UNLIKELY (qtmux->dts_method == DTS_METHOD_REORDER)) {
|
||||
if (qtmux->dts_method == DTS_METHOD_REORDER) {
|
||||
buf = gst_qt_mux_get_asc_buffer_ts (qtmux, pad, buf);
|
||||
if (!buf && !last_buf) {
|
||||
GST_DEBUG_OBJECT (qtmux, "no reordered buffer");
|
||||
|
|
Loading…
Reference in a new issue