diff --git a/DOCS/French/mplayer.1 b/DOCS/French/mplayer.1 index 09f75c403c..1691381aef 100644 --- a/DOCS/French/mplayer.1 +++ b/DOCS/French/mplayer.1 @@ -1393,7 +1393,7 @@ Menu (par d .B \-jpeg (\-vo jpeg uniquement) Spécifie les option de la sortie JPEG. .br -Les options disponibles sont: [no]progressiv, [no]baseline, optimize, smooth, +Les options disponibles sont: [no]progressive, [no]baseline, optimize, smooth, quality et outdir. .TP .B \-monitor_dotclock (fbdev et vesa diff --git a/DOCS/German/mplayer.1 b/DOCS/German/mplayer.1 index a09232a043..f60881a2df 100644 --- a/DOCS/German/mplayer.1 +++ b/DOCS/German/mplayer.1 @@ -830,7 +830,7 @@ Setzt die Lage des Vollbild-Fensters von MPlayer f .TP .B \-jpeg Gibt Optionen für die JPEG Ausgabe (-vo jpeg) an (siehe Dokumentation!). -Verfügbare Optionen sind [no]progressiv, [no]baseline, optimize, smooth, +Verfügbare Optionen sind [no]progressive, [no]baseline, optimize, smooth, quality und outdir. .TP .B \-monitor_dotclock (nur fbdev) diff --git a/DOCS/Polish/mplayer.1 b/DOCS/Polish/mplayer.1 index 9ed3d767aa..eda8ca61c7 100644 --- a/DOCS/Polish/mplayer.1 +++ b/DOCS/Polish/mplayer.1 @@ -1268,7 +1268,7 @@ Menu (domy .TP .B \-jpeg (tylko \-vo jpeg) Wyszczególnij opcje dla danych wyjściowych JPEG. -Dostępne opcje to: [no]progressiv, [no]baseline, optimize, smooth, quality +Dostępne opcje to: [no]progressive, [no]baseline, optimize, smooth, quality i outdir. .TP .B \-monitor_dotclock (tylko fbdev i vesa) diff --git a/DOCS/mplayer.1 b/DOCS/mplayer.1 index 608562fa27..8eea528a7c 100644 --- a/DOCS/mplayer.1 +++ b/DOCS/mplayer.1 @@ -1349,7 +1349,7 @@ Menu (default) .B \-jpeg (\-vo jpeg only) Specify options for the JPEG output. .br -Available options are: [no]progressiv, [no]baseline, optimize, smooth, quality +Available options are: [no]progressive, [no]baseline, optimize, smooth, quality and outdir. .TP .B \-monitor_dotclock (fbdev and vesa only) diff --git a/cfg-mplayer.h b/cfg-mplayer.h index 9d14d2d607..589235e46f 100644 --- a/cfg-mplayer.h +++ b/cfg-mplayer.h @@ -145,8 +145,8 @@ struct config ao_plugin_conf[]={ #ifdef HAVE_JPEG struct config jpeg_conf[]={ - {"progressiv", &jpeg_progressive_mode, CONF_TYPE_FLAG, 0, 0, 1, NULL}, - {"noprogressiv", &jpeg_progressive_mode, CONF_TYPE_FLAG, 0, 1, 0, NULL}, + {"progressive", &jpeg_progressive_mode, CONF_TYPE_FLAG, 0, 0, 1, NULL}, + {"noprogressive", &jpeg_progressive_mode, CONF_TYPE_FLAG, 0, 1, 0, NULL}, {"baseline", &jpeg_baseline, CONF_TYPE_FLAG, 0, 0, 1, NULL}, {"nobaseline", &jpeg_baseline, CONF_TYPE_FLAG, 0, 1, 0, NULL}, {"optimize", &jpeg_optimize, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},