1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
2004-07-10 Nathan Chantrell <nsc@zorg.org>
* vsound.c
Rolled in autostop patch by Richard Taylor <r.taylor@bcs.org.uk>
Kills the player after a set number of seconds of inactivity (defined
as the time that the /dev/dsp device is closed)
* vsound.in
--autostop (-a) autostop option handling from above patch added
Fixed non-functional --resample (-r) option
2001-02-11 Erik de Castro Lopo <erikd@zip.com.au>
* vsound.in
Prevented simultaneous usage of --verbose and --stdout. Thanks to
Lars Kellogg-Stedman for pointing out the problems with this.
Added copyright to top of file.
2000-12-20 Erik de Castro Lopo <erikd@zip.com.au>
* vsound.c
Added code to do usleep() for an appropriate time to fool the realplayer
into thinking its actually writing to the soundcard even though its
writing to a file.
* vsound.in
Added --timing (-t) option handling.
Added better set of reasons why vsound may fail in error output.
2000-11-12 Erik de Castro Lopo <erikd@zip.com.au>
* vsound.in
Improved command line argument handling.
Added --no-convert option.
2000-11-07 Erik de Castro Lopo <erikd@zip.com.au>
* vsound.c
Debian Woody doesn't #define RTLD_NEXT so detect and correct this.
2000-08-03 Erik de Castro Lopo <erikd@zip.com.au>
* vsound.in vsound.c
Added changes to make silent operation the default. Simultaneous playback
and conversion is enabled with the -d / --dspout switch.
Some programs (specifically, some versions of the RealPlayer) may require
this options to perform correctly.
2000-06-24 Erik de Castro Lopo <erikd@zip.com.au>
* configure.in vsound.c
Improved detection of processor endian-ness.
* vsound.in
Added -r / --resample command line option to make sox resample the audio
data at a different sample rate.
2000-03-14 Erik de Castro Lopo <erikd@zip.com.au>
* vsound.c
Fixed it to work with version 7 of the RealPlayer.
Tidy up.
* configure.in
Added --enable-debug option.
2000-03-04 Erik de Castro Lopo <erikd@zip.com.au>
* vsound.c
Changed the operation. vsound now works by passing all data to /dev/dsp but
also saving required ioctl() call data and audio data to a separate file.
The AUTHORS, ChangeLog and NEWS files have been updated to reflect this.
1999-05-31 James Henstridge <james@daa.com.au>
* Makefile.am (libvsound_la_LDFLAGS): added some flags so that we
don't have the version number on the end.
* vsound.in: made the script detect the sound format correctly,
and form the correct set of options to sox. It should also handle
little endian/big endian related problems correctly.
* vsound.c (dspctl): give information about the format. Before it was
always reporting signed 16-bit, which was very broken.
(dspctl): recognise the SNDCTL_DSP_CHANNELS ioctl as well.
|