summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-05-11 09:26:47 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2012-05-11 09:26:47 +0200
commit163720246e64f3306bf404ebaea40102489110e1 (patch)
tree8d5dfaf78a8085b9f16f2a2922cc2d19a5a63481
parent445c41963b4288694d338b348de1f5f5ec86a522 (diff)
decodebin2: fix compilation
-rw-r--r--gst/playback/gstdecodebin2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/playback/gstdecodebin2.c b/gst/playback/gstdecodebin2.c
index 357a87ae7..dba75abca 100644
--- a/gst/playback/gstdecodebin2.c
+++ b/gst/playback/gstdecodebin2.c
@@ -1994,7 +1994,7 @@ connect_pad (GstDecodeBin * dbin, GstElement * src, GstDecodePad * dpad,
speed = CLAMP (speed, pspecuint->minimum, pspecuint->maximum);
} else if (G_PARAM_SPEC_TYPE (pspec) == G_TYPE_PARAM_INT64) {
- GParamSpecInt64 *pspecint = G_PARAM_SPEC_INT (pspec);
+ GParamSpecInt64 *pspecint = G_PARAM_SPEC_INT64 (pspec);
speed = CLAMP (speed, pspecint->minimum, pspecint->maximum);
} else {