2017-05-01 14:18:33 +02:00
|
|
|
/**
|
|
|
|
* vgmstream for foobar2000
|
|
|
|
*/
|
2008-05-26 15:29:21 +02:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
|
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <io.h>
|
|
|
|
|
|
|
|
#include <foobar2000.h>
|
2017-12-31 04:15:34 +01:00
|
|
|
#include <ATLHelpers/ATLHelpersLean.h>
|
2008-05-26 15:29:21 +02:00
|
|
|
#include <shared.h>
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include "../src/vgmstream.h"
|
|
|
|
}
|
|
|
|
#include "foo_vgmstream.h"
|
2017-05-18 23:03:55 +02:00
|
|
|
#include "foo_filetypes.h"
|
2008-05-26 15:29:21 +02:00
|
|
|
|
2017-01-15 23:09:37 +01:00
|
|
|
#ifndef VERSION
|
|
|
|
#include "../version.h"
|
|
|
|
#endif
|
2008-05-26 15:29:21 +02:00
|
|
|
#ifndef VERSION
|
2010-10-27 14:28:32 +02:00
|
|
|
#define PLUGIN_VERSION __DATE__
|
|
|
|
#else
|
|
|
|
#define PLUGIN_VERSION VERSION
|
2008-05-26 15:29:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define APP_NAME "vgmstream plugin"
|
2010-02-28 02:51:36 +01:00
|
|
|
#define PLUGIN_DESCRIPTION "vgmstream plugin " VERSION " " __DATE__ "\n" \
|
2017-05-01 14:18:33 +02:00
|
|
|
"by hcs, FastElbja, manakoAT, bxaimc, snakemeat, soneek, kode54, bnnm and many others\n" \
|
|
|
|
"\n" \
|
|
|
|
"foobar2000 plugin by Josh W, kode54\n" \
|
|
|
|
"\n" \
|
|
|
|
"https://github.com/kode54/vgmstream/\n" \
|
2017-08-16 05:06:03 +02:00
|
|
|
"https://sourceforge.net/projects/vgmstream/ (original)"
|
2010-10-27 14:28:32 +02:00
|
|
|
|
2008-05-26 15:29:21 +02:00
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
input_vgmstream::input_vgmstream() {
|
|
|
|
vgmstream = NULL;
|
2018-04-15 00:54:46 +02:00
|
|
|
subsong = 0; // 0 = not set, will be properly changed on first setup_vgmstream
|
|
|
|
direct_subsong = false;
|
2017-08-12 21:17:44 +02:00
|
|
|
|
|
|
|
decoding = false;
|
|
|
|
paused = 0;
|
|
|
|
decode_pos_ms = 0;
|
|
|
|
decode_pos_samples = 0;
|
|
|
|
stream_length_samples = 0;
|
|
|
|
fade_samples = 0;
|
|
|
|
seek_pos_samples = 0;
|
|
|
|
|
|
|
|
fade_seconds = 10.0f;
|
|
|
|
fade_delay_seconds = 0.0f;
|
|
|
|
loop_count = 2.0f;
|
|
|
|
loop_forever = false;
|
|
|
|
ignore_loop = 0;
|
2017-08-19 12:35:38 +02:00
|
|
|
disable_subsongs = false;
|
2018-04-29 23:31:52 +02:00
|
|
|
downmix_channels = 0;
|
2017-08-12 21:17:44 +02:00
|
|
|
|
|
|
|
load_settings();
|
2008-05-26 15:29:21 +02:00
|
|
|
}
|
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
input_vgmstream::~input_vgmstream() {
|
|
|
|
close_vgmstream(vgmstream);
|
|
|
|
vgmstream = NULL;
|
|
|
|
}
|
2008-05-26 15:29:21 +02:00
|
|
|
|
2018-04-15 00:54:46 +02:00
|
|
|
// called first when a new file is opened
|
2010-02-26 08:45:06 +01:00
|
|
|
void input_vgmstream::open(service_ptr_t<file> p_filehint,const char * p_path,t_input_open_reason p_reason,abort_callback & p_abort) {
|
2008-05-26 15:29:21 +02:00
|
|
|
|
2017-08-13 22:26:40 +02:00
|
|
|
if (!p_path) { // shouldn't be possible
|
2017-08-12 21:17:44 +02:00
|
|
|
throw exception_io_data();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
filename = p_path;
|
|
|
|
|
|
|
|
/* KLUDGE */
|
|
|
|
if ( !pfc::stricmp_ascii( pfc::string_extension(filename), "MUS" ) )
|
2017-05-19 17:44:15 +02:00
|
|
|
{
|
2017-08-12 21:17:44 +02:00
|
|
|
unsigned char buffer[ 4 ];
|
|
|
|
if ( p_filehint.is_empty() ) input_open_file_helper( p_filehint, filename, p_reason, p_abort );
|
|
|
|
p_filehint->read_object_t( buffer, p_abort );
|
|
|
|
if ( !memcmp( buffer, "MUS\x1A", 4 ) ) throw exception_io_unsupported_format();
|
2017-05-19 17:44:15 +02:00
|
|
|
}
|
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
|
2017-08-13 22:26:40 +02:00
|
|
|
// keep file stats around (timestamp, filesize)
|
|
|
|
if ( p_filehint.is_empty() )
|
|
|
|
input_open_file_helper( p_filehint, filename, p_reason, p_abort );
|
|
|
|
stats = p_filehint->get_stats( p_abort );
|
|
|
|
|
|
|
|
switch(p_reason) {
|
|
|
|
case input_open_decode: // prepare to retrieve info and decode
|
|
|
|
case input_open_info_read: // prepare to retrieve info
|
|
|
|
setup_vgmstream(p_abort); // must init vgmstream to get subsongs
|
2017-08-12 21:17:44 +02:00
|
|
|
break;
|
|
|
|
|
2017-08-13 22:26:40 +02:00
|
|
|
case input_open_info_write: // prepare to retrieve info and tag
|
2017-08-12 21:17:44 +02:00
|
|
|
throw exception_io_data();
|
|
|
|
break;
|
|
|
|
|
2017-08-13 22:26:40 +02:00
|
|
|
default: // nothing else should be possible
|
|
|
|
throw exception_io_data();
|
2017-08-12 21:17:44 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-15 00:54:46 +02:00
|
|
|
// called after opening file (possibly per subsong too)
|
2017-08-12 21:17:44 +02:00
|
|
|
unsigned input_vgmstream::get_subsong_count() {
|
|
|
|
// if the plugin uses input_factory_t template and returns > 1 here when adding a song to the playlist,
|
|
|
|
// foobar will automagically "unpack" it by calling decode_initialize/get_info with all subsong indexes.
|
|
|
|
// There is no need to add any playlist code, only properly handle the subsong index.
|
2017-08-13 22:26:40 +02:00
|
|
|
if (disable_subsongs)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
// vgmstream ready as method is valid after open() with any reason
|
|
|
|
int subsong_count = vgmstream->num_streams;
|
|
|
|
if (subsong_count == 0)
|
|
|
|
subsong_count = 1; // most formats don't have subsongs
|
2018-04-15 00:54:46 +02:00
|
|
|
|
|
|
|
// pretend we don't have subsongs as we don't want foobar to unpack the rest
|
|
|
|
if (direct_subsong)
|
|
|
|
subsong_count = 1;
|
|
|
|
|
2017-08-13 22:26:40 +02:00
|
|
|
return subsong_count;
|
2017-08-12 21:17:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
t_uint32 input_vgmstream::get_subsong(unsigned p_index) {
|
2017-08-13 22:26:40 +02:00
|
|
|
return p_index + 1; // translates index (0..N < subsong_count) for vgmstream: 1=first
|
2017-08-12 21:17:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void input_vgmstream::get_info(t_uint32 p_subsong, file_info & p_info, abort_callback & p_abort) {
|
|
|
|
int length_in_ms=0, channels = 0, samplerate = 0;
|
|
|
|
int total_samples = -1;
|
|
|
|
int bitrate = 0;
|
|
|
|
int loop_start = -1, loop_end = -1;
|
|
|
|
pfc::string8 description;
|
|
|
|
pfc::string8_fast temp;
|
|
|
|
|
2017-08-19 12:35:38 +02:00
|
|
|
get_subsong_info(p_subsong, temp, &length_in_ms, &total_samples, &loop_start, &loop_end, &samplerate, &channels, &bitrate, description, p_abort);
|
|
|
|
|
|
|
|
if (get_subsong_count() > 1) {
|
|
|
|
p_info.meta_set("TITLE",temp);
|
|
|
|
}
|
2017-08-12 21:17:44 +02:00
|
|
|
|
|
|
|
p_info.info_set_int("samplerate", samplerate);
|
|
|
|
p_info.info_set_int("channels", channels);
|
|
|
|
p_info.info_set_int("bitspersample",16);
|
2018-03-11 21:13:50 +01:00
|
|
|
/* not quite accurate but some people are confused by this
|
|
|
|
* (could set lossless if PCM, but then again PCMFloat or PCM8 are converted/"lossy" in vgmstream) */
|
|
|
|
p_info.info_set("encoding","lossy");
|
2017-08-12 21:17:44 +02:00
|
|
|
p_info.info_set_bitrate(bitrate / 1000);
|
|
|
|
if (total_samples > 0)
|
|
|
|
p_info.info_set_int("stream_total_samples", total_samples);
|
|
|
|
if (loop_start >= 0 && loop_end >= loop_start) {
|
|
|
|
p_info.info_set_int("loop_start", loop_start);
|
|
|
|
p_info.info_set_int("loop_end", loop_end);
|
2017-05-19 17:44:15 +02:00
|
|
|
}
|
2017-08-12 21:17:44 +02:00
|
|
|
p_info.set_length(((double)length_in_ms)/1000);
|
|
|
|
|
|
|
|
if (get_description_tag(temp,description,"encoding: ")) p_info.info_set("codec",temp);
|
|
|
|
if (get_description_tag(temp,description,"layout: ")) p_info.info_set("layout",temp);
|
|
|
|
if (get_description_tag(temp,description,"interleave: ",' ')) p_info.info_set("interleave",temp);
|
2018-03-24 19:30:35 +01:00
|
|
|
if (get_description_tag(temp,description,"interleave last block:",' ')) p_info.info_set("interleave_last_block",temp);
|
2017-08-12 21:17:44 +02:00
|
|
|
|
|
|
|
if (get_description_tag(temp,description,"block size: ")) p_info.info_set("block_size",temp);
|
|
|
|
if (get_description_tag(temp,description,"metadata from: ")) p_info.info_set("metadata_source",temp);
|
2017-08-19 15:59:29 +02:00
|
|
|
if (get_description_tag(temp,description,"stream count: ")) p_info.info_set("stream_count",temp);
|
2017-08-12 21:17:44 +02:00
|
|
|
if (get_description_tag(temp,description,"stream index: ")) p_info.info_set("stream_index",temp);
|
|
|
|
if (get_description_tag(temp,description,"stream name: ")) p_info.info_set("stream_name",temp);
|
|
|
|
}
|
2017-05-19 17:44:15 +02:00
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
t_filestats input_vgmstream::get_file_stats(abort_callback & p_abort) {
|
|
|
|
return stats;
|
2010-02-26 08:45:06 +01:00
|
|
|
}
|
2008-05-26 15:29:21 +02:00
|
|
|
|
2018-04-15 00:54:46 +02:00
|
|
|
// called right before actually playing (decoding) a song/subsong
|
2017-08-12 21:17:44 +02:00
|
|
|
void input_vgmstream::decode_initialize(t_uint32 p_subsong, unsigned p_flags, abort_callback & p_abort) {
|
|
|
|
force_ignore_loop = !!(p_flags & input_flag_no_looping);
|
|
|
|
|
2018-04-15 00:54:46 +02:00
|
|
|
// if subsong changes recreate vgmstream
|
|
|
|
if (subsong != p_subsong && !direct_subsong) {
|
2017-08-13 22:26:40 +02:00
|
|
|
subsong = p_subsong;
|
|
|
|
setup_vgmstream(p_abort);
|
|
|
|
}
|
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
decode_seek( 0, p_abort );
|
2010-02-26 08:45:06 +01:00
|
|
|
};
|
2008-05-26 15:29:21 +02:00
|
|
|
|
2010-02-26 08:45:06 +01:00
|
|
|
bool input_vgmstream::decode_run(audio_chunk & p_chunk,abort_callback & p_abort) {
|
2017-08-12 21:17:44 +02:00
|
|
|
if (!decoding) return false;
|
2017-11-10 20:26:44 +01:00
|
|
|
if (!vgmstream) return false;
|
2017-08-12 21:17:44 +02:00
|
|
|
|
|
|
|
int max_buffer_samples = sizeof(sample_buffer)/sizeof(sample_buffer[0])/vgmstream->channels;
|
2017-11-10 20:26:44 +01:00
|
|
|
int samples_to_do = max_buffer_samples;
|
|
|
|
t_size bytes;
|
2017-08-12 21:17:44 +02:00
|
|
|
|
2017-11-10 20:26:44 +01:00
|
|
|
{
|
2017-08-12 21:17:44 +02:00
|
|
|
bool loop_okay = loop_forever && vgmstream->loop_flag && !ignore_loop && !force_ignore_loop;
|
|
|
|
if (decode_pos_samples+max_buffer_samples>stream_length_samples && !loop_okay)
|
|
|
|
samples_to_do=stream_length_samples-decode_pos_samples;
|
|
|
|
else
|
|
|
|
samples_to_do=max_buffer_samples;
|
|
|
|
|
|
|
|
if (samples_to_do /*< DECODE_SIZE*/ == 0) {
|
|
|
|
decoding = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
render_vgmstream(sample_buffer,samples_to_do,vgmstream);
|
|
|
|
|
|
|
|
/* fade! */
|
|
|
|
if (vgmstream->loop_flag && fade_samples > 0 && !loop_okay) {
|
|
|
|
int samples_into_fade = decode_pos_samples - (stream_length_samples - fade_samples);
|
|
|
|
if (samples_into_fade + samples_to_do > 0) {
|
|
|
|
int j,k;
|
|
|
|
for (j=0;j<samples_to_do;j++,samples_into_fade++) {
|
|
|
|
if (samples_into_fade > 0) {
|
|
|
|
double fadedness = (double)(fade_samples-samples_into_fade)/fade_samples;
|
|
|
|
for (k=0;k<vgmstream->channels;k++) {
|
|
|
|
sample_buffer[j*vgmstream->channels+k] =
|
|
|
|
(short)(sample_buffer[j*vgmstream->channels+k]*fadedness);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-29 23:31:52 +02:00
|
|
|
/* downmix enabled (foobar refuses to do more than 8 channels) */
|
|
|
|
if (downmix_channels > 0 && downmix_channels < vgmstream->channels) {
|
|
|
|
short temp_buffer[OUTBUF_SIZE];
|
|
|
|
int s, ch;
|
|
|
|
|
|
|
|
for (s = 0; s < samples_to_do; s++) {
|
|
|
|
/* copy channels up to max */
|
|
|
|
for (ch = 0; ch < downmix_channels; ch++) {
|
|
|
|
temp_buffer[s*downmix_channels + ch] = sample_buffer[s*vgmstream->channels + ch];
|
|
|
|
}
|
|
|
|
/* then mix the rest */
|
|
|
|
for (ch = downmix_channels; ch < vgmstream->channels; ch++) {
|
|
|
|
int downmix_ch = ch % downmix_channels;
|
|
|
|
int new_sample = ((int)temp_buffer[s*downmix_channels + downmix_ch] + (int)sample_buffer[s*vgmstream->channels + ch]);
|
|
|
|
new_sample = (int)(new_sample * 0.7); /* limit clipping without removing too much loudness... hopefully */
|
|
|
|
if (new_sample > 32767) new_sample = 32767;
|
|
|
|
else if (new_sample < -32768) new_sample = -32768;
|
|
|
|
temp_buffer[s*downmix_channels + downmix_ch] = (short)new_sample;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy back to global buffer... in case of multithreading stuff? */
|
|
|
|
memcpy(sample_buffer,temp_buffer, samples_to_do*downmix_channels*sizeof(short));
|
|
|
|
|
|
|
|
bytes = (samples_to_do*downmix_channels * sizeof(sample_buffer[0]));
|
|
|
|
p_chunk.set_data_fixedpoint((char*)sample_buffer, bytes, vgmstream->sample_rate, downmix_channels, 16, audio_chunk::g_guess_channel_config(downmix_channels));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bytes = (samples_to_do*vgmstream->channels * sizeof(sample_buffer[0]));
|
|
|
|
p_chunk.set_data_fixedpoint((char*)sample_buffer, bytes, vgmstream->sample_rate, vgmstream->channels, 16, audio_chunk::g_guess_channel_config(vgmstream->channels));
|
|
|
|
}
|
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
|
|
|
|
decode_pos_samples+=samples_to_do;
|
|
|
|
decode_pos_ms=decode_pos_samples*1000LL/vgmstream->sample_rate;
|
|
|
|
|
|
|
|
return samples_to_do==max_buffer_samples;
|
|
|
|
}
|
2010-02-26 08:45:06 +01:00
|
|
|
}
|
2008-05-26 15:29:21 +02:00
|
|
|
|
2010-02-26 08:45:06 +01:00
|
|
|
void input_vgmstream::decode_seek(double p_seconds,abort_callback & p_abort) {
|
2017-08-12 21:17:44 +02:00
|
|
|
seek_pos_samples = (int) audio_math::time_to_samples(p_seconds, vgmstream->sample_rate);
|
|
|
|
int max_buffer_samples = sizeof(sample_buffer)/sizeof(sample_buffer[0])/vgmstream->channels;
|
|
|
|
bool loop_okay = loop_forever && vgmstream->loop_flag && !ignore_loop && !force_ignore_loop;
|
2008-05-26 15:29:21 +02:00
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
int corrected_pos_samples = seek_pos_samples;
|
2010-02-28 02:51:36 +01:00
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
// adjust for correct position within loop
|
|
|
|
if(vgmstream->loop_flag && (vgmstream->loop_end_sample - vgmstream->loop_start_sample) && seek_pos_samples >= vgmstream->loop_end_sample) {
|
|
|
|
corrected_pos_samples -= vgmstream->loop_start_sample;
|
|
|
|
corrected_pos_samples %= (vgmstream->loop_end_sample - vgmstream->loop_start_sample);
|
|
|
|
corrected_pos_samples += vgmstream->loop_start_sample;
|
|
|
|
}
|
2010-02-26 08:45:06 +01:00
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
// Allow for delta seeks forward, by up to the total length of the stream, if the delta is less than the corrected offset
|
|
|
|
if(decode_pos_samples > corrected_pos_samples && decode_pos_samples <= seek_pos_samples &&
|
|
|
|
(seek_pos_samples - decode_pos_samples) < stream_length_samples) {
|
|
|
|
if (corrected_pos_samples > (seek_pos_samples - decode_pos_samples))
|
|
|
|
corrected_pos_samples = seek_pos_samples;
|
|
|
|
}
|
2010-02-26 08:45:06 +01:00
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
// Reset of backwards seek
|
|
|
|
else if(corrected_pos_samples < decode_pos_samples) {
|
|
|
|
reset_vgmstream(vgmstream);
|
2017-08-16 05:06:58 +02:00
|
|
|
vgmstream->loop_target = 0;
|
2017-08-12 21:17:44 +02:00
|
|
|
if (ignore_loop) vgmstream->loop_flag = 0;
|
|
|
|
decode_pos_samples = 0;
|
|
|
|
}
|
2010-02-26 08:45:06 +01:00
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
// seeking overrun = bad
|
|
|
|
if(corrected_pos_samples > stream_length_samples) corrected_pos_samples = stream_length_samples;
|
|
|
|
|
|
|
|
while(decode_pos_samples<corrected_pos_samples) {
|
|
|
|
int seek_samples = max_buffer_samples;
|
|
|
|
if((decode_pos_samples+max_buffer_samples>=stream_length_samples) && !loop_okay)
|
|
|
|
seek_samples=stream_length_samples-seek_pos_samples;
|
|
|
|
if(decode_pos_samples+max_buffer_samples>seek_pos_samples)
|
|
|
|
seek_samples=seek_pos_samples-decode_pos_samples;
|
|
|
|
|
|
|
|
decode_pos_samples+=seek_samples;
|
|
|
|
render_vgmstream(sample_buffer,seek_samples,vgmstream);
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove seek loop correction from counter so file ends correctly
|
|
|
|
decode_pos_samples=seek_pos_samples;
|
|
|
|
|
|
|
|
decode_pos_ms=decode_pos_samples*1000LL/vgmstream->sample_rate;
|
|
|
|
|
|
|
|
decoding = loop_okay || decode_pos_samples < stream_length_samples;
|
2010-02-26 08:45:06 +01:00
|
|
|
}
|
|
|
|
|
2010-02-26 17:45:52 +01:00
|
|
|
bool input_vgmstream::decode_can_seek() {return true;}
|
2017-08-14 21:59:39 +02:00
|
|
|
bool input_vgmstream::decode_get_dynamic_info(file_info & p_out, double & p_timestamp_delta) { return false; }
|
2010-02-26 08:45:06 +01:00
|
|
|
bool input_vgmstream::decode_get_dynamic_info_track(file_info & p_out, double & p_timestamp_delta) {return false;}
|
|
|
|
void input_vgmstream::decode_on_idle(abort_callback & p_abort) {/*m_file->on_idle(p_abort);*/}
|
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
void input_vgmstream::retag_set_info(t_uint32 p_subsong, const file_info & p_info, abort_callback & p_abort) { /*throw exception_io_data();*/ }
|
|
|
|
void input_vgmstream::retag_commit(abort_callback & p_abort) { /*throw exception_io_data();*/ }
|
2010-02-26 08:45:06 +01:00
|
|
|
|
|
|
|
bool input_vgmstream::g_is_our_content_type(const char * p_content_type) {return false;}
|
|
|
|
bool input_vgmstream::g_is_our_path(const char * p_path,const char * p_extension) {
|
2017-01-03 13:34:20 +01:00
|
|
|
const char ** ext_list;
|
2017-11-10 20:26:44 +01:00
|
|
|
size_t ext_list_len;
|
2017-01-03 13:34:20 +01:00
|
|
|
int i;
|
|
|
|
|
2017-11-10 20:26:44 +01:00
|
|
|
ext_list = vgmstream_get_formats(&ext_list_len);
|
2017-01-03 13:34:20 +01:00
|
|
|
|
|
|
|
for (i=0; i < ext_list_len; i++) {
|
|
|
|
if (!stricmp_utf8(p_extension, ext_list[i]))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2010-02-26 08:45:06 +01:00
|
|
|
}
|
2008-05-26 15:29:21 +02:00
|
|
|
|
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
VGMSTREAM * input_vgmstream::init_vgmstream_foo(t_uint32 p_subsong, const char * const filename, abort_callback & p_abort) {
|
|
|
|
VGMSTREAM *vgmstream = NULL;
|
2008-05-26 15:29:21 +02:00
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
STREAMFILE *streamFile = open_foo_streamfile(filename, &p_abort, &stats);
|
|
|
|
if (streamFile) {
|
2017-08-13 22:26:40 +02:00
|
|
|
streamFile->stream_index = p_subsong;
|
2017-08-12 21:17:44 +02:00
|
|
|
vgmstream = init_vgmstream_from_STREAMFILE(streamFile);
|
|
|
|
close_streamfile(streamFile);
|
|
|
|
}
|
|
|
|
return vgmstream;
|
|
|
|
}
|
2008-05-26 15:29:21 +02:00
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
void input_vgmstream::setup_vgmstream(abort_callback & p_abort) {
|
|
|
|
// close first in case of changing subsongs
|
|
|
|
if (vgmstream) {
|
|
|
|
close_vgmstream(vgmstream);
|
|
|
|
}
|
|
|
|
|
|
|
|
// subsong and filename are always defined before this
|
2017-08-13 22:26:40 +02:00
|
|
|
vgmstream = init_vgmstream_foo(subsong, filename, p_abort);
|
2017-08-12 21:17:44 +02:00
|
|
|
if (!vgmstream) {
|
|
|
|
throw exception_io_data();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-15 00:54:46 +02:00
|
|
|
// default subsong is 0, meaning first init (vgmstream should open first stream, but not set stream_index).
|
|
|
|
// if the stream_index is already set, then the subsong was opened directly by some means (txtp, playlist, etc).
|
|
|
|
// add flag as in that case we only want to play the subsong but not unpack subsongs (which foobar does by default).
|
|
|
|
if (subsong == 0 && vgmstream->stream_index > 0) {
|
|
|
|
subsong = vgmstream->stream_index;
|
|
|
|
direct_subsong = true;
|
|
|
|
}
|
|
|
|
if (subsong == 0)
|
|
|
|
subsong = 1;
|
|
|
|
|
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
if (ignore_loop)
|
|
|
|
vgmstream->loop_flag = 0;
|
|
|
|
|
|
|
|
decode_pos_ms = 0;
|
|
|
|
decode_pos_samples = 0;
|
|
|
|
paused = 0;
|
|
|
|
stream_length_samples = get_vgmstream_play_samples(loop_count,fade_seconds,fade_delay_seconds,vgmstream);
|
2017-08-16 05:06:58 +02:00
|
|
|
vgmstream->loop_target = 0;
|
2017-08-12 21:17:44 +02:00
|
|
|
|
|
|
|
fade_samples = (int)(fade_seconds * vgmstream->sample_rate);
|
|
|
|
}
|
|
|
|
|
2017-08-19 12:35:38 +02:00
|
|
|
void input_vgmstream::get_subsong_info(t_uint32 p_subsong, pfc::string_base & title, int *length_in_ms, int *total_samples, int *loop_start, int *loop_end, int *sample_rate, int *channels, int *bitrate, pfc::string_base & description, abort_callback & p_abort) {
|
2017-08-13 22:26:40 +02:00
|
|
|
VGMSTREAM * infostream = NULL;
|
2017-08-19 12:35:38 +02:00
|
|
|
char temp[1024];
|
2017-08-13 22:26:40 +02:00
|
|
|
|
|
|
|
// reuse current vgmstream if not querying a new subsong
|
2018-04-15 00:54:46 +02:00
|
|
|
// if it's a direct subsong then subsong may be N while p_subsong 1
|
|
|
|
// there is no need to recreate the infostream, there is only one subsong used
|
|
|
|
if (subsong != p_subsong && !direct_subsong) {
|
2017-08-13 22:26:40 +02:00
|
|
|
infostream = init_vgmstream_foo(p_subsong, filename, p_abort);
|
|
|
|
} else {
|
|
|
|
// vgmstream ready as get_info is valid after open() with any reason
|
|
|
|
infostream = vgmstream;
|
|
|
|
}
|
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
|
|
|
|
if (length_in_ms) {
|
|
|
|
*length_in_ms = -1000;
|
|
|
|
if (infostream) {
|
|
|
|
*length_in_ms = get_vgmstream_play_samples(loop_count,fade_seconds,fade_delay_seconds,infostream)*1000LL/infostream->sample_rate;
|
2017-12-31 04:15:34 +01:00
|
|
|
infostream->loop_target = 0;
|
2017-08-12 21:17:44 +02:00
|
|
|
*sample_rate = infostream->sample_rate;
|
|
|
|
*channels = infostream->channels;
|
|
|
|
*total_samples = infostream->num_samples;
|
|
|
|
*bitrate = get_vgmstream_average_bitrate(infostream);
|
|
|
|
if (infostream->loop_flag) {
|
|
|
|
*loop_start = infostream->loop_start_sample;
|
|
|
|
*loop_end = infostream->loop_end_sample;
|
|
|
|
}
|
|
|
|
|
|
|
|
char temp[1024];
|
|
|
|
describe_vgmstream(infostream, temp, 1024);
|
|
|
|
description = temp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (title) {
|
2017-08-19 12:35:38 +02:00
|
|
|
const char *p = filename + strlen(filename);
|
2017-08-12 21:17:44 +02:00
|
|
|
while (*p != '\\' && p >= filename) p--;
|
2017-08-19 12:35:38 +02:00
|
|
|
p++;
|
|
|
|
const char *e = filename + strlen(filename);
|
|
|
|
while (*e != '.' && e >= filename) e--;
|
|
|
|
|
|
|
|
title.set_string(p, e - p);
|
|
|
|
|
|
|
|
if (!disable_subsongs && infostream && infostream->num_streams > 1) {
|
2018-04-29 23:31:52 +02:00
|
|
|
int info_subsong = infostream->stream_index;
|
|
|
|
if (info_subsong==0)
|
|
|
|
info_subsong = 1;
|
|
|
|
sprintf(temp,"#%d",info_subsong);
|
2017-08-19 12:35:38 +02:00
|
|
|
title += temp;
|
|
|
|
|
|
|
|
if (infostream->stream_name[0] != '\0') {
|
|
|
|
sprintf(temp," (%s)",infostream->stream_name);
|
|
|
|
title += temp;
|
|
|
|
}
|
|
|
|
}
|
2017-08-12 21:17:44 +02:00
|
|
|
}
|
|
|
|
|
2017-08-13 22:26:40 +02:00
|
|
|
// and only close if was querying a new subsong
|
2018-04-15 00:54:46 +02:00
|
|
|
if (subsong != p_subsong && !direct_subsong) {
|
2017-08-13 22:26:40 +02:00
|
|
|
close_vgmstream(infostream);
|
|
|
|
infostream = NULL;
|
|
|
|
}
|
2017-08-12 21:17:44 +02:00
|
|
|
}
|
2008-05-26 15:29:21 +02:00
|
|
|
|
2017-09-17 05:51:07 +02:00
|
|
|
bool input_vgmstream::get_description_tag(pfc::string_base & temp, pfc::string_base const& description, const char *tag, char delimiter) {
|
2017-08-13 22:26:40 +02:00
|
|
|
// extract a "tag" from the description string
|
2017-08-12 21:17:44 +02:00
|
|
|
t_size pos = description.find_first(tag);
|
|
|
|
t_size eos;
|
|
|
|
if (pos != pfc::infinite_size) {
|
|
|
|
pos += strlen(tag);
|
|
|
|
eos = description.find_first(delimiter, pos);
|
|
|
|
if (eos == pfc::infinite_size) eos = description.length();
|
|
|
|
temp.set_string(description + pos, eos - pos);
|
2017-11-25 00:43:18 +01:00
|
|
|
//console::formatter() << "tag=" << tag << ", delim=" << delimiter << "temp=" << temp << ", pos=" << pos << "" << eos;
|
2017-08-12 21:17:44 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2008-05-26 15:29:21 +02:00
|
|
|
}
|
|
|
|
|
2017-12-31 04:15:34 +01:00
|
|
|
GUID input_vgmstream::g_get_guid()
|
|
|
|
{
|
|
|
|
static const GUID guid = { 0x9e7263c7, 0x4cdd, 0x482c,{ 0x9a, 0xec, 0x5e, 0x71, 0x28, 0xcb, 0xc3, 0x4 } };
|
|
|
|
return guid;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char * input_vgmstream::g_get_name()
|
|
|
|
{
|
|
|
|
return "vgmstream";
|
|
|
|
}
|
|
|
|
|
|
|
|
GUID input_vgmstream::g_get_preferences_guid()
|
|
|
|
{
|
|
|
|
static const GUID guid = { 0x2b5d0302, 0x165b, 0x409c,{ 0x94, 0x74, 0x2c, 0x8c, 0x2c, 0xd7, 0x6a, 0x25 } };;
|
|
|
|
return guid;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool input_vgmstream::g_is_low_merit()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2008-05-26 15:29:21 +02:00
|
|
|
|
2017-08-12 21:17:44 +02:00
|
|
|
/* foobar plugin defs */
|
|
|
|
static input_factory_t<input_vgmstream> g_input_vgmstream_factory;
|
2008-05-26 15:29:21 +02:00
|
|
|
|
|
|
|
DECLARE_COMPONENT_VERSION(APP_NAME,PLUGIN_VERSION,PLUGIN_DESCRIPTION);
|
2010-02-28 02:51:36 +01:00
|
|
|
VALIDATE_COMPONENT_FILENAME("foo_input_vgmstream.dll");
|