search for: dithercontext

Displaying 2 results from an estimated 2 matches for "dithercontext".

2004 Sep 10
1
plugin optimizations
...nput[] * supports more channels * fixed clipping bug (BTW, random number generator in dither.c is low quality, it should be replaced, generator in replaygain is much better) * FLAC__plugin_common__apply_gain * accept FLAC__int32 *input[] * noise shaping type moved into DitherContext (user will not be confused by louder noise if shaping is switched on during playback) * supports more channels * works correctly if wide_samples % 32 != 0 plugin_xmms/ * optimizations and updates following changes in plugin_common (winamp plugins need update too!) * prea...
2004 Sep 10
0
http streaming in the xmms plugin
...lugin.h> #include <xmms/util.h> *************** *** 41,46 **** --- 44,50 ---- #include "configure.h" #include "wrap_id3.h" #include "charset.h" + #include "http.h" #ifdef min #undef min *************** *** 68,73 **** --- 72,106 ---- DitherContext dither_context; } file_info_struct; + typedef FLAC__StreamDecoderWriteStatus (*WriteCallback) (const void *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data); + typedef void (*MetadataCallback) (const void *decoder, const FLAC__StreamMetadata *metadata, v...