From ed3adece777175edd785787f4d6b914f06d5913c Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Wed, 7 Sep 2011 08:54:17 -0300 Subject: [PATCH] qtmux: remove one G_UNLIKELY for user property Using G_UNLIKELY on user properties isn't nice, specially when that is the default option. --- gst/isomp4/gstqtmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/isomp4/gstqtmux.c b/gst/isomp4/gstqtmux.c index 33ea5ca31f..0f5c46890e 100644 --- a/gst/isomp4/gstqtmux.c +++ b/gst/isomp4/gstqtmux.c @@ -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");