From f5ca649977db8745d33b647c4b3de1fc73d2ab3d Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Mon, 4 Jun 2012 19:30:54 -0400 Subject: [PATCH] shell-recorder: Don't use a default filename The default filename isn't localized and isn't the same one that the shell sets. Just remove the fallback mechanism, and abort recording if somebody didn't set the filename https://bugzilla.gnome.org/show_bug.cgi?id=677434 --- src/shell-recorder.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/shell-recorder.c b/src/shell-recorder.c index aa170e774..9211f5dcb 100644 --- a/src/shell-recorder.c +++ b/src/shell-recorder.c @@ -150,10 +150,6 @@ G_DEFINE_TYPE(ShellRecorder, shell_recorder, G_TYPE_OBJECT); */ #define DEFAULT_PIPELINE "vp8enc quality=8 speed=6 threads=%T ! queue ! webmmux" -/* The default filename pattern. Example Screencast at 2009-03-11 00:08:15.webm - */ -#define DEFAULT_FILENAME "Screencast at %d %t.webm" - /* If we can find the amount of memory on the machine, we use half * of that for memory_target, otherwise, we use this value, in kB. */ @@ -1189,7 +1185,7 @@ recorder_open_outfile (ShellRecorder *recorder) pattern = recorder->filename; if (!pattern) - pattern = DEFAULT_FILENAME; + return -1; while (TRUE) {