summaryrefslogtreecommitdiff
path: root/apps/codecs/dumb/examples/dumb.ini
diff options
context:
space:
mode:
authorMichiel Van Der Kolk <not.valid@email.address>2005-03-17 20:50:03 +0000
committerMichiel Van Der Kolk <not.valid@email.address>2005-03-17 20:50:03 +0000
commit27be5bc72855a0fbbdae230bc144624c9eb85f5e (patch)
treeb553f1321df924c4b744ffcab48dce5f4f081f7d /apps/codecs/dumb/examples/dumb.ini
parent7e7662bb716917ca431204f0113d400c1014f2e8 (diff)
downloadrockbox-27be5bc72855a0fbbdae230bc144624c9eb85f5e.tar.gz
rockbox-27be5bc72855a0fbbdae230bc144624c9eb85f5e.zip
Initial check in dumb 0.9.2 - has a few usages of floating point that should
be rewritten to fixed point. seems to compile cleanly for iriver. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6197 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/dumb/examples/dumb.ini')
-rw-r--r--apps/codecs/dumb/examples/dumb.ini44
1 files changed, 44 insertions, 0 deletions
diff --git a/apps/codecs/dumb/examples/dumb.ini b/apps/codecs/dumb/examples/dumb.ini
new file mode 100644
index 0000000000..6fea2ce50f
--- /dev/null
+++ b/apps/codecs/dumb/examples/dumb.ini
@@ -0,0 +1,44 @@
1# Please edit this file to control the playback quality for 'dumbplay'. Note
2# that this does not affect DUMB when you use it in your own programs; you
3# need to borrow some code from the example program in order to get that to
4# happen.
5
6# dumb_resampling_quality can be 0 for aliasing, 1 for linear interpolation
7# or 2 for cubic interpolation. See docs/dumb.txt for details on what these
8# terms mean.
9
10# dumb_it_max_to_mix is the maximum number of samples DUMB will render at a
11# time. See docs/dumb.txt for a more detailed description.
12
13# Increase buffer_size to combat stuttering.
14
15# The music module will be rendered at the sampling frequency specified by
16# sound_freq. This variable is also used by Allegro for initialising the
17# sound hardware.
18
19# buffer_size and sound_freq are passed directly to al_start_duh(). See this
20# function's description in docs/dumb.txt for information about how to use
21# these variables.
22
23# You can ignore the quality variable. Allegro uses it when relaying the
24# audio stream to the sound card. Only a masochist would set it lower than 2;
25# if your computer is powerful enough to run DUMB, it is powerful enough to
26# use this setting with Allegro.
27
28# For best results, choose a value for sound_freq that your sound card can do
29# exactly. See Allegro's docs, "Standard config variables", for details. If
30# you do not choose an exact value, Allegro will round it to the nearest
31# value it can do; then when DUMB plays the stream at a sampling frequency of
32# sound_freq, Allegro will have to resample it. Allegro's 'quality = 2'
33# setting is only comparable with DUMB's 'dumb_resampling_quality = 1'
34# setting. Therefore, in order to appreciate DUMB's cubic resampler fully,
35# you will need to make sure Allegro doesn't do any resampling, by choosing
36# an exact value for sound_freq.
37
38[sound]
39dumb_resampling_quality = 2
40dumb_it_max_to_mix = 256
41buffer_size = 4096
42sound_freq = 44100
43
44quality = 2