Mercurial > audlegacy
view libaudacious/formatter.h @ 413:97ba91ee699e trunk
[svn] Change copying of scaling properties from factor 11 -> 12, to factor 12
-> 13 when antialiasing -- results in a higher accuracy decode.
It could still be wrong, we may need to do 13 -> 14 or 14 -> 15. We'll
see how people like this adjustment first.
author | nenolod |
---|---|
date | Mon, 09 Jan 2006 15:00:10 -0800 |
parents | cb178e5ad177 |
children | 53a3d5db6b58 |
line wrap: on
line source
#ifndef XMMS_FORMATTER_H #define XMMS_FORMATTER_H #include <glib.h> typedef struct { gchar *values[256]; } Formatter; G_BEGIN_DECLS Formatter *xmms_formatter_new(void); void xmms_formatter_destroy(Formatter * formatter); void xmms_formatter_associate(Formatter * formatter, guchar id, gchar * value); void xmms_formatter_dissociate(Formatter * formatter, guchar id); gchar *xmms_formatter_format(Formatter * formatter, gchar * format); G_END_DECLS #endif