omx: minor stylistic change for consistency with other similar code
authorJosep Torra <n770galaxy@gmail.com>
Sat, 16 Mar 2013 09:13:06 +0000 (10:13 +0100)
committerJosep Torra <n770galaxy@gmail.com>
Sat, 16 Mar 2013 09:13:06 +0000 (10:13 +0100)
omx/gstomx.c

index 701ba6e..bfbcea1 100644 (file)
@@ -840,7 +840,7 @@ gst_omx_component_get_state (GstOMXComponent * comp, GstClockTime timeout)
     if (!g_queue_is_empty (&comp->messages)) {
       signalled = TRUE;
     }
-    if (wait_until == -1) {
+    if (timeout == GST_CLOCK_TIME_NONE) {
       g_cond_wait (&comp->messages_cond, &comp->messages_lock);
       signalled = TRUE;
     } else {
@@ -1520,7 +1520,7 @@ gst_omx_port_set_flushing (GstOMXPort * port, GstClockTime timeout,
       if (!g_queue_is_empty (&comp->messages)) {
         signalled = TRUE;
       }
-      if (wait_until == -1) {
+      if (timeout == GST_CLOCK_TIME_NONE) {
         g_cond_wait (&comp->messages_cond, &comp->messages_lock);
         signalled = TRUE;
       } else {