diff options
Diffstat (limited to 'src/inputPlugins')
-rw-r--r-- | src/inputPlugins/audiofile_plugin.c | 3 | ||||
-rw-r--r-- | src/inputPlugins/wavpack_plugin.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/inputPlugins/audiofile_plugin.c b/src/inputPlugins/audiofile_plugin.c index 2fbe580fa..c3046770b 100644 --- a/src/inputPlugins/audiofile_plugin.c +++ b/src/inputPlugins/audiofile_plugin.c @@ -26,6 +26,9 @@ #include <audiofile.h> +/* pick 1020 since its devisible for 8,16,24, and 32-bit audio */ +#define CHUNK_SIZE 1020 + static int getAudiofileTotalTime(char *file) { int total_time; diff --git a/src/inputPlugins/wavpack_plugin.c b/src/inputPlugins/wavpack_plugin.c index 7a37e69b2..2253feb41 100644 --- a/src/inputPlugins/wavpack_plugin.c +++ b/src/inputPlugins/wavpack_plugin.c @@ -28,6 +28,9 @@ #include <wavpack/wavpack.h> +/* pick 1020 since its devisible for 8,16,24, and 32-bit audio */ +#define CHUNK_SIZE 1020 + #define ERRORLEN 80 static struct { |