2016-06-28 09:20:37 +02:00
|
|
|
#include "meta.h"
|
2017-09-17 03:41:36 +02:00
|
|
|
#include "hca_keys.h"
|
|
|
|
#include "../coding/coding.h"
|
2016-06-28 09:20:37 +02:00
|
|
|
|
2018-09-01 20:28:00 +02:00
|
|
|
static void find_hca_key(hca_codec_data * hca_data, unsigned long long * out_keycode);
|
2016-06-28 09:20:37 +02:00
|
|
|
|
|
|
|
VGMSTREAM * init_vgmstream_hca(STREAMFILE *streamFile) {
|
2017-09-17 03:41:36 +02:00
|
|
|
VGMSTREAM * vgmstream = NULL;
|
2018-09-01 20:28:00 +02:00
|
|
|
hca_codec_data * hca_data = NULL;
|
|
|
|
unsigned long long keycode = 0;
|
2016-06-28 09:20:37 +02:00
|
|
|
|
2018-08-29 20:05:31 +02:00
|
|
|
/* checks */
|
|
|
|
if ( !check_extensions(streamFile, "hca"))
|
|
|
|
return NULL;
|
2018-09-01 20:28:00 +02:00
|
|
|
if (((uint32_t)read_32bitBE(0x00,streamFile) & 0x7f7f7f7f) != 0x48434100) /* "HCA\0", possibly masked */
|
2018-08-29 20:05:31 +02:00
|
|
|
goto fail;
|
2016-07-01 00:34:40 +02:00
|
|
|
|
2018-09-01 20:28:00 +02:00
|
|
|
/* init vgmstream and library's context, will validate the HCA */
|
2018-08-29 20:05:31 +02:00
|
|
|
hca_data = init_hca(streamFile);
|
2018-09-01 20:28:00 +02:00
|
|
|
if (!hca_data) goto fail;
|
2016-07-01 00:34:40 +02:00
|
|
|
|
2017-09-17 03:41:36 +02:00
|
|
|
/* find decryption key in external file or preloaded list */
|
2016-12-04 14:12:23 +01:00
|
|
|
{
|
|
|
|
uint8_t keybuf[8];
|
2018-01-20 20:06:15 +01:00
|
|
|
if (read_key_file(keybuf, 8, streamFile) == 8) {
|
2018-09-01 20:28:00 +02:00
|
|
|
keycode = (uint64_t)get_64bitBE(keybuf+0x00);
|
2016-12-04 14:12:23 +01:00
|
|
|
} else {
|
2018-09-01 20:28:00 +02:00
|
|
|
find_hca_key(hca_data, &keycode);
|
2016-12-04 14:12:23 +01:00
|
|
|
}
|
|
|
|
|
2018-09-01 20:28:00 +02:00
|
|
|
clHCA_SetKey(hca_data->handle, keycode); //maybe should be done through hca_decoder.c?
|
|
|
|
}
|
2017-09-17 03:41:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
|
|
|
vgmstream = allocate_vgmstream(hca_data->info.channelCount, hca_data->info.loopEnabled);
|
|
|
|
if (!vgmstream) goto fail;
|
2016-07-01 00:34:40 +02:00
|
|
|
|
2018-08-29 20:05:31 +02:00
|
|
|
vgmstream->meta_type = meta_HCA;
|
2017-09-17 03:41:36 +02:00
|
|
|
vgmstream->sample_rate = hca_data->info.samplingRate;
|
2018-08-29 23:42:47 +02:00
|
|
|
|
|
|
|
vgmstream->num_samples = hca_data->info.blockCount * hca_data->info.samplesPerBlock -
|
|
|
|
hca_data->info.encoderDelay - hca_data->info.encoderPadding;
|
|
|
|
vgmstream->loop_start_sample = hca_data->info.loopStartBlock * hca_data->info.samplesPerBlock -
|
|
|
|
hca_data->info.encoderDelay + hca_data->info.loopStartDelay;
|
|
|
|
vgmstream->loop_end_sample = hca_data->info.loopEndBlock * hca_data->info.samplesPerBlock -
|
|
|
|
hca_data->info.encoderDelay + (hca_data->info.samplesPerBlock - hca_data->info.loopEndPadding);
|
|
|
|
/* After loop end CRI's encoder removes the rest of the original samples and puts some
|
|
|
|
* garbage in the last frame that should be ignored. Optionally it can encode fully preserving
|
|
|
|
* the file too, but it isn't detectable, so we'll allow the whole thing just in case */
|
|
|
|
//if (vgmstream->loop_end_sample && vgmstream->num_samples > vgmstream->loop_end_sample)
|
|
|
|
// vgmstream->num_samples = vgmstream->loop_end_sample;
|
2016-07-01 00:34:40 +02:00
|
|
|
|
2017-09-17 03:41:36 +02:00
|
|
|
vgmstream->coding_type = coding_CRI_HCA;
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
vgmstream->codec_data = hca_data;
|
2016-07-01 00:34:40 +02:00
|
|
|
|
2017-09-17 03:41:36 +02:00
|
|
|
return vgmstream;
|
2016-06-28 09:20:37 +02:00
|
|
|
|
2017-09-17 03:41:36 +02:00
|
|
|
fail:
|
2018-08-29 20:05:31 +02:00
|
|
|
free_hca(hca_data);
|
2017-09-17 03:41:36 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2016-06-28 09:20:37 +02:00
|
|
|
|
|
|
|
|
2018-08-29 20:05:31 +02:00
|
|
|
#define HCA_KEY_MAX_TEST_CLIPS 400 /* hopefully nobody masters files with more that a handful... */
|
|
|
|
#define HCA_KEY_MAX_TEST_FRAMES 100 /* ~102400 samples */
|
|
|
|
#define HCA_KEY_MAX_TEST_SAMPLES 10240 /* ~10 frames of non-blank samples */
|
|
|
|
|
2017-09-17 03:41:36 +02:00
|
|
|
/* Tries to find the decryption key from a list. Simply decodes a few frames and checks if there aren't too many
|
|
|
|
* clipped samples, as it's common for invalid keys (though possible with valid keys in poorly mastered files). */
|
2018-09-01 20:28:00 +02:00
|
|
|
static void find_hca_key(hca_codec_data * hca_data, unsigned long long * out_keycode) {
|
|
|
|
const size_t keys_length = sizeof(hcakey_list) / sizeof(hcakey_info);
|
|
|
|
sample *test_samples = NULL;
|
|
|
|
size_t buffer_samples = hca_data->info.samplesPerBlock * hca_data->info.channelCount;
|
|
|
|
unsigned long long best_keycode;
|
|
|
|
int i;
|
2017-09-17 03:41:36 +02:00
|
|
|
int min_clip_count = -1;
|
2018-09-01 20:28:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
test_samples = malloc(sizeof(sample) * buffer_samples);
|
|
|
|
if (!test_samples)
|
|
|
|
return; /* ??? */
|
|
|
|
|
|
|
|
best_keycode = 0xCC55463930DBE1AB; /* defaults to PSO2 key, most common */
|
2016-06-28 09:20:37 +02:00
|
|
|
|
|
|
|
|
2017-09-17 03:41:36 +02:00
|
|
|
/* find a candidate key */
|
|
|
|
for (i = 0; i < keys_length; i++) {
|
|
|
|
int clip_count = 0, sample_count = 0;
|
2018-08-29 20:05:31 +02:00
|
|
|
int frame = 0, s;
|
2018-09-01 20:28:00 +02:00
|
|
|
unsigned long long keycode = (unsigned long long)hcakey_list[i].key;
|
2016-06-28 09:20:37 +02:00
|
|
|
|
2018-09-01 20:28:00 +02:00
|
|
|
clHCA_SetKey(hca_data->handle, keycode);
|
2018-08-29 23:42:47 +02:00
|
|
|
reset_hca(hca_data);
|
2017-09-17 03:41:36 +02:00
|
|
|
|
|
|
|
/* test enough frames, but not too many */
|
2018-08-29 20:05:31 +02:00
|
|
|
while (frame < HCA_KEY_MAX_TEST_FRAMES && frame < hca_data->info.blockCount) {
|
2018-09-01 20:28:00 +02:00
|
|
|
decode_hca(hca_data, test_samples, hca_data->info.samplesPerBlock);
|
2017-09-17 03:41:36 +02:00
|
|
|
|
2018-09-01 20:28:00 +02:00
|
|
|
for (s = 0; s < buffer_samples; s++) {
|
|
|
|
if (test_samples[s] != 0 && test_samples[s] != -1)
|
2017-09-17 03:41:36 +02:00
|
|
|
sample_count++; /* ignore upper/lower blank samples */
|
|
|
|
|
2018-09-01 20:28:00 +02:00
|
|
|
if (test_samples[s] == 32767 || test_samples[s] == -32768)
|
2017-09-17 03:41:36 +02:00
|
|
|
clip_count++; /* upper/lower clip */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (clip_count > HCA_KEY_MAX_TEST_CLIPS)
|
|
|
|
break; /* too many, don't bother */
|
|
|
|
if (sample_count >= HCA_KEY_MAX_TEST_SAMPLES)
|
|
|
|
break; /* enough non-blank samples tested */
|
|
|
|
|
2018-08-29 20:05:31 +02:00
|
|
|
frame++;
|
2017-09-17 03:41:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (min_clip_count < 0 || clip_count < min_clip_count) {
|
|
|
|
min_clip_count = clip_count;
|
2018-09-01 20:28:00 +02:00
|
|
|
best_keycode = keycode;
|
2017-09-17 03:41:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (min_clip_count == 0)
|
|
|
|
break; /* can't get better than this */
|
|
|
|
|
|
|
|
/* a few clips is normal, but some invalid keys may give low numbers too */
|
|
|
|
//if (clip_count < 10)
|
|
|
|
// break;
|
|
|
|
}
|
|
|
|
|
2018-09-01 20:28:00 +02:00
|
|
|
VGM_ASSERT(min_clip_count > 0,
|
|
|
|
"HCA: best key=%08x%08x (clips=%i)\n",
|
|
|
|
(uint32_t)((best_keycode >> 32) & 0xFFFFFFFF), (uint32_t)(best_keycode & 0xFFFFFFFF), min_clip_count);
|
2017-09-17 03:41:36 +02:00
|
|
|
|
2018-09-01 20:28:00 +02:00
|
|
|
reset_hca(hca_data);
|
|
|
|
*out_keycode = best_keycode;
|
|
|
|
free(test_samples);
|
2016-06-28 09:20:37 +02:00
|
|
|
}
|