Commit 220005ae authored by Benjamin Pracht's avatar Benjamin Pracht

* Use 0 as default quality setting. The previous "3" would make VLC ignore the ab= argument unless being explicitely told to use cbr with the --sout-vorbis-cbr oprion.
parent 388fd56e
...@@ -194,7 +194,7 @@ vlc_module_begin(); ...@@ -194,7 +194,7 @@ vlc_module_begin();
set_callbacks( OpenEncoder, CloseEncoder ); set_callbacks( OpenEncoder, CloseEncoder );
#endif #endif
add_integer( ENC_CFG_PREFIX "quality", 3, NULL, ENC_QUALITY_TEXT, add_integer( ENC_CFG_PREFIX "quality", 0, NULL, ENC_QUALITY_TEXT,
ENC_QUALITY_LONGTEXT, VLC_FALSE ); ENC_QUALITY_LONGTEXT, VLC_FALSE );
add_integer( ENC_CFG_PREFIX "max-bitrate", 0, NULL, ENC_MAXBR_TEXT, add_integer( ENC_CFG_PREFIX "max-bitrate", 0, NULL, ENC_MAXBR_TEXT,
ENC_MAXBR_LONGTEXT, VLC_FALSE ); ENC_MAXBR_LONGTEXT, VLC_FALSE );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment