[Common] add todo item on comparing framerates.
authorMyungJoo Ham <myungjoo.ham@samsung.com>
Thu, 15 Nov 2018 06:29:59 +0000 (15:29 +0900)
committerjaeyun-jung <39614140+jaeyun-jung@users.noreply.github.com>
Sat, 17 Nov 2018 05:37:42 +0000 (14:37 +0900)
1/2 == 2/4. Don't assert they are different.

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
gst/nnstreamer/tensor_common.c

index fb74432..56c689c 100644 (file)
@@ -295,6 +295,7 @@ gst_tensor_config_is_equal (const GstTensorConfig * c1,
   g_return_val_if_fail (c1 != NULL, FALSE);
   g_return_val_if_fail (c2 != NULL, FALSE);
 
+  /** @todo 1/2 == 2/4 Don't say they are different! */
   if (c1->rate_n != c2->rate_n || c1->rate_d != c2->rate_d) {
     return FALSE;
   }