Mercurial > audlegacy-plugins
changeset 233:7b7660c9f31c trunk
[svn] - rewrite to take advantage of already existant object-oriented framework
- add VFS support
author | nenolod |
---|---|
date | Tue, 07 Nov 2006 00:35:18 -0800 |
parents | 6c78d6d3cdb7 |
children | 88465b96e4b3 |
files | ChangeLog src/wavpack/libwavpack.cxx |
diffstat | 2 files changed, 96 insertions(+), 18 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Tue Nov 07 00:07:11 2006 -0800 +++ b/ChangeLog Tue Nov 07 00:35:18 2006 -0800 @@ -1,3 +1,16 @@ +2006-11-07 08:07:11 +0000 William Pitcock <nenolod@nenolod.net> + revision [476] + - put musepack support back + + trunk/configure.ac | 22 + trunk/src/musepack/Makefile | 32 + trunk/src/musepack/equalizer.cxx | 196 ---- + trunk/src/musepack/equalizer.h | 11 + trunk/src/musepack/libmpc.cxx | 1824 ++++++++++++++++++++------------------- + trunk/src/musepack/libmpc.h | 356 +++---- + 6 files changed, 1159 insertions(+), 1282 deletions(-) + + 2006-11-07 07:19:42 +0000 William Pitcock <nenolod@nenolod.net> revision [470] - and remove musepack from here for now
--- a/src/wavpack/libwavpack.cxx Tue Nov 07 00:07:11 2006 -0800 +++ b/src/wavpack/libwavpack.cxx Tue Nov 07 00:35:18 2006 -0800 @@ -10,6 +10,7 @@ #include <audacious/configdb.h> #include <audacious/titlestring.h> #include <audacious/util.h> +#include <audacious/vfs.h> } #include <glib.h> #include <gtk/gtk.h> @@ -83,6 +84,62 @@ wv_get_song_tuple, }; +int32_t read_bytes (void *id, void *data, int32_t bcount) +{ + return vfs_fread (data, 1, bcount, (VFSFile *) id); +} + +uint32_t get_pos (void *id) +{ + return vfs_ftell ((VFSFile *) id); +} + +int set_pos_abs (void *id, uint32_t pos) +{ + return vfs_fseek ((VFSFile *) id, pos, SEEK_SET); +} + +int set_pos_rel (void *id, int32_t delta, int mode) +{ + return vfs_fseek ((VFSFile *) id, delta, mode); +} + +int push_back_byte (void *id, int c) +{ + return vfs_ungetc (c, (VFSFile *) id); +} + +uint32_t get_length (void *id) +{ + VFSFile *file = (VFSFile *) id; + uint32_t sz = 0; + + if (file == NULL) + return 0; + + vfs_fseek(file, 0, SEEK_END); + sz = vfs_ftell(file); + vfs_fseek(file, 0, SEEK_SET); + + return sz; +} + +/* XXX streams?? */ +int can_seek (void *id) +{ + return 1; +} + +int32_t write_bytes (void *id, void *data, int32_t bcount) +{ + return vfs_fwrite (data, 1, bcount, (VFSFile *) id); +} + +WavpackStreamReader reader = { + read_bytes, get_pos, set_pos_abs, set_pos_rel, push_back_byte, get_length, can_seek, + write_bytes +}; + class WavpackDecoder { public: @@ -93,6 +150,7 @@ int num_channels; WavpackContext *ctx; char error_buff[4096]; // TODO: fixme! + VFSFile *wv_Input, *wvc_Input; WavpackDecoder(InputPlugin *mod) : mod(mod) { @@ -112,14 +170,24 @@ output = NULL; } if (ctx != NULL) { - WavpackCloseFile(ctx); + vfs_fclose(wv_Input); + vfs_fclose(wvc_Input); + g_free(ctx); ctx = NULL; } } bool attach(const char *filename) { - ctx = WavpackOpenFileInput(filename, error_buff, OPEN_TAGS | OPEN_WVC, 0); + wv_Input = vfs_fopen(filename, "rb"); + + char *corrFilename = g_strconcat(filename, "c", NULL); + + wvc_Input = vfs_fopen(corrFilename, "rb"); + + g_free(corrFilename); + + ctx = WavpackOpenFileInputEx(&reader, wv_Input, wvc_Input, error_buff, OPEN_TAGS | OPEN_WVC, 0); if (ctx == NULL) { return false; @@ -346,17 +414,14 @@ wv_get_song_tuple(char *filename) { TitleInput *ti; - char error_buff[4096]; // TODO: fixme! - WavpackContext *ctx = WavpackOpenFileInput(filename, error_buff, OPEN_TAGS | OPEN_WVC, 0); + WavpackDecoder d(&mod); - if (ctx == NULL) { - printf("wavpack: Error opening file: \"%s: %s\"\n", filename, error_buff); + if (!d.attach(filename)) { + printf("wavpack: Error opening file: \"%s\"\n", filename); return NULL; } - ti = tuple_from_WavpackContext(filename, ctx); - - WavpackCloseFile(ctx); + ti = tuple_from_WavpackContext(filename, d.ctx); return ti; } @@ -365,20 +430,20 @@ wv_get_song_info(char *filename, char **title, int *length) { assert(filename != NULL); - char error_buff[4096]; // TODO: fixme! - WavpackContext *ctx = WavpackOpenFileInput(filename, error_buff, OPEN_TAGS | OPEN_WVC, 0); - if (ctx == NULL) { - printf("wavpack: Error opening file: \"%s: %s\"\n", filename, error_buff); + WavpackDecoder d(&mod); + + if (!d.attach(filename)) { + printf("wavpack: Error opening file: \"%s\"\n", filename); return; } - int sample_rate = WavpackGetSampleRate(ctx); - int num_channels = WavpackGetNumChannels(ctx); + + int sample_rate = WavpackGetSampleRate(d.ctx); + int num_channels = WavpackGetNumChannels(d.ctx); DBG("reading %s at %d rate with %d channels\n", filename, sample_rate, num_channels); - *length = (int)(WavpackGetNumSamples(ctx) / sample_rate) * 1000, - *title = generate_title(filename, ctx); + *length = (int)(WavpackGetNumSamples(d.ctx) / sample_rate) * 1000, + *title = generate_title(filename, d.ctx); DBG("title for %s = %s\n", filename, *title); - WavpackCloseFile(ctx); } static int