summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
Diffstat (limited to 'gst')
-rw-r--r--gst/speed/gstspeed.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/speed/gstspeed.c b/gst/speed/gstspeed.c
index 090d13d0..b685bb32 100644
--- a/gst/speed/gstspeed.c
+++ b/gst/speed/gstspeed.c
@@ -121,9 +121,9 @@ speed_parse_caps (GstSpeed * filter, const GstCaps * caps)
ret &= gst_structure_get_int (structure, "channels", &filter->channels);
ret &= gst_structure_get_int (structure, "width", &filter->width);
ret &= gst_structure_get_int (structure, "endianness", &filter->endianness);
- ret &=
- gst_structure_get_int (structure, "buffer-frames",
- &filter->buffer_frames);
+
+ filter->buffer_frames = 0;
+ gst_structure_get_int (structure, "buffer-frames", &filter->buffer_frames);
mimetype = gst_structure_get_name (structure);