From c7c115abcc0d036e0ad5b77f6e147ab560f4c3b9 Mon Sep 17 00:00:00 2001 From: divverent Date: Wed, 18 Feb 2009 14:29:13 +0000 Subject: [PATCH] increase default theora quality from 16 to 32; this about matches the compression ratio of MPEG2 on a DVD, and looks quite good git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8726 d7cf8633-e32d-0410-b094-e92efae38249 --- cap_ogg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cap_ogg.c b/cap_ogg.c index c1030a02..87ff6847 100644 --- a/cap_ogg.c +++ b/cap_ogg.c @@ -5,7 +5,7 @@ #include "cap_ogg.h" // video capture cvars -static cvar_t cl_capturevideo_ogg_theora_quality = {CVAR_SAVE, "cl_capturevideo_ogg_theora_quality", "16", "video quality factor (0 to 63), or -1 to use bitrate only; higher is better"}; +static cvar_t cl_capturevideo_ogg_theora_quality = {CVAR_SAVE, "cl_capturevideo_ogg_theora_quality", "32", "video quality factor (0 to 63), or -1 to use bitrate only; higher is better"}; static cvar_t cl_capturevideo_ogg_theora_bitrate = {CVAR_SAVE, "cl_capturevideo_ogg_theora_bitrate", "-1", "video bitrate (45 to 2000 kbps), or -1 to use quality only; higher is better"}; static cvar_t cl_capturevideo_ogg_theora_keyframe_bitrate_multiplier = {CVAR_SAVE, "cl_capturevideo_ogg_theora_keyframe_bitrate_multiplier", "1.5", "how much more bit rate to use for keyframes, specified as a factor of at least 1"}; static cvar_t cl_capturevideo_ogg_theora_keyframe_frequency = {CVAR_SAVE, "cl_capturevideo_ogg_theora_keyframe_frequency", "64", "maximum number of frames between two key frames (1 to 1000)"}; -- 2.39.2