summaryrefslogtreecommitdiff
path: root/gst/y4m
diff options
context:
space:
mode:
authorStéphane Loeuillet <gstreamer@leroutier.net>2005-01-14 18:36:42 +0000
committerStéphane Loeuillet <gstreamer@leroutier.net>2005-01-14 18:36:42 +0000
commit1842191dc542f9ffe19b2b5ce054f64dfea40497 (patch)
treebda42c6542967fd209333d1e895f1de76dac28de /gst/y4m
parentb91c909ef93b22a8be3d1bd2f695b33e5441de8f (diff)
downloadgstreamer-plugins-bad-1842191dc542f9ffe19b2b5ce054f64dfea40497.tar.gz
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)
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.
Diffstat (limited to 'gst/y4m')
-rw-r--r--gst/y4m/gsty4mencode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/y4m/gsty4mencode.c b/gst/y4m/gsty4mencode.c
index 396b0625f..f70f101ac 100644
--- a/gst/y4m/gsty4mencode.c
+++ b/gst/y4m/gsty4mencode.c
@@ -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;