1 /*
2     TiMidity -- Experimental MIDI to WAVE converter
3     Copyright (C) 1995 Tuukka Toivonen <toivonen@clinet.fi>
4 
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the Perl Artistic License, available in COPYING.
7  */
8 
9 #include "config.h"
10 #include "output.h"
11 
12 /* export the playback mode */
13 
14 #define dpm sdl_play_mode
15 
16 PlayMode dpm = {
17   DEFAULT_RATE, PE_16BIT|PE_SIGNED,
18   "SDL audio"
19 };
getFormFieldOutputString($fieldname, $fielddata, $do_show = true)20