summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/ffmpeg/gstffmpegcfg.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/ffmpeg/gstffmpegcfg.c b/ext/ffmpeg/gstffmpegcfg.c
index 45fb225..c868385 100644
--- a/ext/ffmpeg/gstffmpegcfg.c
+++ b/ext/ffmpeg/gstffmpegcfg.c
@@ -401,7 +401,12 @@ gst_ffmpeg_cfg_init ()
gst_ffmpeg_add_pspec (pspec, quantizer, FALSE, mpeg, NULL);
pspec = g_param_spec_string ("statsfile", "Statistics Filename",
- "Filename to store data for 2-pass encoding", "stats.log",
+ "Filename to store data for 2-pass encoding (deprecated, use multipass-cache-file)",
+ "stats.log", G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
+ gst_ffmpeg_add_pspec (pspec, filename, FALSE, mpeg, NULL);
+
+ pspec = g_param_spec_string ("multipass-cache-file", "Multipass Cache File",
+ "Filename for multipass cache file", "stats.log",
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
gst_ffmpeg_add_pspec (pspec, filename, FALSE, mpeg, NULL);