diff options
author | Edward Hervey <bilboed@bilboed.com> | 2009-10-07 16:56:28 +0200 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2009-10-07 16:56:28 +0200 |
commit | 2021791b754d9c1955b1464ae96584cd7f3d38e5 (patch) | |
tree | 2c183aea10e857d15ced5989500db3bbfe65e3fd | |
parent | 4db9487a1f265d55858214a40058cffc3ec628b6 (diff) |
theoraenc: Make the default quality property 48.
This guarantees that people who use theoraenc without modifying any
properties will end up with a reasonably good quality output.
48 is also the default of the encoder_example application shipped with
libtheora.
-rw-r--r-- | ext/theora/theoraenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/theora/theoraenc.c b/ext/theora/theoraenc.c index 8f19986c..bc7e608c 100644 --- a/ext/theora/theoraenc.c +++ b/ext/theora/theoraenc.c @@ -110,7 +110,7 @@ _ilog (unsigned int v) #define THEORA_DEF_CENTER TRUE #define THEORA_DEF_BORDER BORDER_BLACK #define THEORA_DEF_BITRATE 0 -#define THEORA_DEF_QUALITY 16 +#define THEORA_DEF_QUALITY 48 #define THEORA_DEF_QUICK TRUE #define THEORA_DEF_KEYFRAME_AUTO TRUE #define THEORA_DEF_KEYFRAME_FREQ 64 |