I'm a bad boy. using /1001. to force C to do float division and not integer division...
authorStéphane Loeuillet <gstreamer@leroutier.net>
Fri, 14 Jan 2005 18:36:42 +0000 (18:36 +0000)
committerStéphane Loeuillet <gstreamer@leroutier.net>
Fri, 14 Jan 2005 18:36:42 +0000 (18:36 +0000)
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.

ChangeLog
gst/y4m/gsty4mencode.c

index e1b7f8cee4076a02d5a628f44946b3c2730b98e0..008d5dcecb7c31b639f9ad83bcc6bf385fe5e01f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
+
+       * 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.
+
 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
 
        * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
index 396b0625f70b1e3ad28e86a514051361fc4deddc..f70f101ac2cf0a3dc454e6a5356cfbecfbcc21e6 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;