mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-04 06:29:31 +00:00
cfg: remove some deprecated properties: statsfile, mb-qmin, mb-qmax
Use multipass-cache-file, qmin, qmax instead.
This commit is contained in:
parent
06d24b47b6
commit
ab7b7cbff3
1 changed files with 0 additions and 15 deletions
|
@ -401,11 +401,6 @@ gst_ffmpeg_cfg_init (void)
|
|||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
||||
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 (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);
|
||||
|
@ -487,16 +482,6 @@ gst_ffmpeg_cfg_init (void)
|
|||
1, 31, 3, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
||||
gst_ffmpeg_add_pspec (pspec, config.max_qdiff, FALSE, mpeg, NULL);
|
||||
|
||||
pspec = g_param_spec_int ("mb-qmin", "Minimum MB Quantizer (DEPRECATED)",
|
||||
"Minimum MB Quantizer (DEPRECATED, use qmin instead)", 0, 31, 2,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
||||
gst_ffmpeg_add_pspec (pspec, config.qmin, FALSE, mpeg, NULL);
|
||||
|
||||
pspec = g_param_spec_int ("mb-qmax", "Maximum MB Quantizer (DEPRECATED)",
|
||||
"Maximum MB Quantizer (DEPRECATED, use qmax instead)", 0, 31, 31,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
||||
gst_ffmpeg_add_pspec (pspec, config.qmax, FALSE, mpeg, NULL);
|
||||
|
||||
pspec = g_param_spec_int ("lmin", "Minimum Lagrange Multiplier",
|
||||
"Minimum Lagrange Multiplier", 1, 31, 2,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
||||
|
|
Loading…
Reference in a new issue