From 538272bb23e5f1e734add7112a9e83b204b74699 Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Sun, 11 Jan 2015 15:47:52 +0100 Subject: [PATCH] recorder: Cleanups --- src/shell-recorder.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/shell-recorder.c b/src/shell-recorder.c index 3ff3d3dc4..83d28a652 100644 --- a/src/shell-recorder.c +++ b/src/shell-recorder.c @@ -1261,7 +1261,7 @@ recorder_pipeline_closed (RecorderPipeline *pipeline) /* * Replaces '%T' in the passed pipeline with the thread count, - * the maximum possible value is 64 (limit of what vp8enc supports) + * the maximum possible value is 64 (limit of what vp9enc supports) * * It is assumes that %T occurs only once. */ @@ -1291,7 +1291,7 @@ substitute_thread_count (const char *pipeline) g_string_append_printf (result, "%d", n_threads); g_string_append (result, tmp + 2); - return g_string_free (result, FALSE);; + return g_string_free (result, FALSE); } static gboolean @@ -1303,7 +1303,7 @@ recorder_open_pipeline (ShellRecorder *recorder) GError *error = NULL; GstBus *bus; - pipeline = g_new0(RecorderPipeline, 1); + pipeline = g_new0 (RecorderPipeline, 1); pipeline->recorder = g_object_ref (recorder); pipeline->outfile = - 1;