[MOVED FROM BAD] I'm a bad boy. using /1001. to force C to do float division and...
authorStéphane Loeuillet <gstreamer@leroutier.net>
Fri, 14 Jan 2005 18:36:42 +0000 (18:36 +0000)
committerJan Schmidt <thaytan@noraisin.net>
Fri, 15 May 2009 22:35:07 +0000 (23:35 +0100)
Original commit message from CVS:
* ext/dv/gstdvdec.c:
* gst/subparse/gstsubparse.c: (parse_mdvdsub):
* gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
I'm a bad boy. using /1001. to force C to do float division
and not integer division (as it did in my last commit)
Thanks to David I. Lehn for pointing this mistake.

gst/y4m/gsty4mencode.c

index 396b062..f70f101 100644 (file)
@@ -136,11 +136,11 @@ gst_y4mencode_sinkconnect (GstPad * pad, const GstCaps * caps)
   gdouble fps;
   gdouble framerates[] = {
     00.000,
-    24000 / 1001, 24.000,       /* 24fps movie */
+    24000 / 1001., 24.000,      /* 24fps movie */
     25.000,                     /* PAL */
-    30000 / 1001, 30.000,       /* NTSC */
+    30000 / 1001., 30.000,      /* NTSC */
     50.000,
-    60000 / 1001, 60.000
+    60000 / 1001., 60.000
   };
   GstStructure *structure;