Displaying 3 results from an estimated 3 matches for "flac__do_dith".
Did you mean:
flac__do_dither
2004 Sep 10
2
24-bit support in winamp2 plugin
...n. I have not figured out all the whiz-bang GUI-based
configuration stuff yet so as it stands the plugin will play
back 24-bit FLAC files and dither them down to 16-bit. I
don't know how to check if the output module supports 24-bit
either, but you can recompile the plugin without the
#define FLAC__DO_DITHER to force it to do raw 24-bit output.
I will gladly take patches for GUI configuration.
The Winamp 3 plugin will likely be MIA in flac 1.0.4 unless
the guys update their cnv_rawpcm example to match the SDK.
I am experimenting with Vorbis comment support in the XMMS
plugin; when it works I'll...
2004 Sep 10
5
FLAC 1.0.4 beta released
...especially valuable), id3v1 and v2 tags,
checking for tag support in the plugins (note the new config window in
the XMMS plugin).
Special note: 24-bit playback in plugins is currently supported by
dithering the output to 16 bps. If you want to try and test raw 24-bit
out, delete the "#defing FLAC__DO_DITHER" in all the plugin source
before compiling. Eventually this will be configurable in the plugins.
If you can write this *please do* and send me a patch.
Also, I noticed too late that there is no "clean" target for the doc/
directory. I'll also welcome patches for that.
Than...
2004 Sep 10
0
http streaming in the xmms plugin
...nfo_struct *)client_data;
(void)decoder;
--- 772,815 ----
file_info->bits_per_sample = metadata->data.stream_info.bits_per_sample;
file_info->channels = metadata->data.stream_info.channels;
file_info->sample_rate = metadata->data.stream_info.sample_rate;
+
+ #ifdef FLAC__DO_DITHER
+ if(file_info->bits_per_sample == 8) {
+ file_info->sample_format = FMT_S8;
+ }
+ else if(file_info->bits_per_sample == 16 || file_info->bits_per_sample == 24) {
+ file_info->sample_format = FMT_S16_LE;
+ }
+ else {
+ /*@@@ need some error here like wa2: Message...