summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Raghavan <arun@arunraghavan.net>2017-01-02 19:55:34 +0530
committerArun Raghavan <arun@arunraghavan.net>2017-01-02 19:58:06 +0530
commit4f282f60689750ecde092a36eac6c18d7333f8a4 (patch)
tree7c7da35f43ba65ef7bc145c57aaffb9713a56ad0
parentd98e82d667ff9ef6cbadb5d52758168071680f71 (diff)
downloadgstreamer-plugins-bad-4f282f60689750ecde092a36eac6c18d7333f8a4.tar.gz
uvch264src: Fix wrong argument order to force-key-unit event
CID 1373421
-rw-r--r--sys/uvch264/gstuvch264_src.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/uvch264/gstuvch264_src.c b/sys/uvch264/gstuvch264_src.c
index 38397c3a5..4f2a6f304 100644
--- a/sys/uvch264/gstuvch264_src.c
+++ b/sys/uvch264/gstuvch264_src.c
@@ -1593,7 +1593,7 @@ gst_uvc_h264_src_buffer_probe (GstPad * pad, GstPadProbeInfo * info,
GST_TIME_FORMAT, all_headers, count, GST_TIME_ARGS (ts),
GST_TIME_ARGS (running_time), GST_TIME_ARGS (stream_time));
downstream = gst_video_event_new_downstream_force_key_unit (ts,
- running_time, stream_time, all_headers, count);
+ stream_time, running_time, all_headers, count);
gst_pad_push_event (self->vidsrc, downstream);
gst_event_replace (&self->key_unit_event, NULL);
}