2019-10-20 23:50:29 +02:00
|
|
|
#include <math.h>
|
2017-05-19 17:21:22 +02:00
|
|
|
#include "coding.h"
|
2016-07-17 08:02:27 +02:00
|
|
|
|
|
|
|
#ifdef VGM_USE_FFMPEG
|
|
|
|
|
2017-05-19 17:21:22 +02:00
|
|
|
#define FFMPEG_DEFAULT_IO_BUFFER_SIZE 128 * 1024
|
|
|
|
|
|
|
|
|
|
|
|
static volatile int g_ffmpeg_initialized = 0;
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
static void free_ffmpeg_config(ffmpeg_codec_data* data);
|
|
|
|
static int init_ffmpeg_config(ffmpeg_codec_data* data, int target_subsong, int reset);
|
2019-07-21 14:41:17 +02:00
|
|
|
|
2017-05-19 17:21:22 +02:00
|
|
|
/* ******************************************** */
|
|
|
|
/* INTERNAL UTILS */
|
|
|
|
/* ******************************************** */
|
|
|
|
|
|
|
|
/* Global FFmpeg init */
|
|
|
|
static void g_init_ffmpeg() {
|
|
|
|
if (g_ffmpeg_initialized == 1) {
|
|
|
|
while (g_ffmpeg_initialized < 2); /* active wait for lack of a better way */
|
|
|
|
}
|
|
|
|
else if (g_ffmpeg_initialized == 0) {
|
|
|
|
g_ffmpeg_initialized = 1;
|
|
|
|
av_log_set_flags(AV_LOG_SKIP_REPEATED);
|
|
|
|
av_log_set_level(AV_LOG_ERROR);
|
2019-10-13 18:43:13 +02:00
|
|
|
//#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 18, 100)
|
|
|
|
// av_register_all(); /* not needed in newer versions */
|
|
|
|
//#endif
|
2017-05-19 17:21:22 +02:00
|
|
|
g_ffmpeg_initialized = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
static void remap_audio(sample_t* outbuf, int sample_count, int channels, int* channel_mappings) {
|
2019-03-30 02:15:22 +01:00
|
|
|
int ch_from,ch_to,s;
|
|
|
|
sample_t temp;
|
|
|
|
for (s = 0; s < sample_count; s++) {
|
|
|
|
for (ch_from = 0; ch_from < channels; ch_from++) {
|
|
|
|
if (ch_from > 32)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ch_to = channel_mappings[ch_from];
|
|
|
|
if (ch_to < 1 || ch_to > 32 || ch_to > channels-1 || ch_from == ch_to)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
temp = outbuf[s*channels + ch_from];
|
|
|
|
outbuf[s*channels + ch_from] = outbuf[s*channels + ch_to];
|
|
|
|
outbuf[s*channels + ch_to] = temp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-19 17:21:22 +02:00
|
|
|
/**
|
|
|
|
* Special patching for FFmpeg's buggy seek code.
|
|
|
|
*
|
|
|
|
* To seek with avformat_seek_file/av_seek_frame, FFmpeg's demuxers can implement read_seek2 (newest API)
|
|
|
|
* or read_seek (older API), with various search modes. If none are available it will use seek_frame_generic,
|
|
|
|
* which manually reads frame by frame until the selected timestamp. However, the prev frame will be consumed
|
|
|
|
* (so after seeking to 0 next av_read_frame will actually give the second frame and so on).
|
|
|
|
*
|
|
|
|
* Fortunately seek_frame_generic can use an index to find the correct position. This function reads the
|
|
|
|
* first frame/packet and sets up index to timestamp 0. This ensures faulty demuxers will seek to 0 correctly.
|
|
|
|
* Some formats may not seek to 0 even with this, though.
|
|
|
|
*/
|
2020-07-16 21:43:01 +02:00
|
|
|
static int init_seek(ffmpeg_codec_data* data) {
|
2019-07-21 14:41:17 +02:00
|
|
|
int ret, ts_index, packet_count = 0;
|
2018-10-06 22:39:34 +02:00
|
|
|
int64_t ts = 0; /* seek timestamp */
|
|
|
|
int64_t pos = 0; /* data offset */
|
|
|
|
int size = 0; /* data size (block align) */
|
2018-10-07 21:16:57 +02:00
|
|
|
int distance = 0; /* always 0 ("duration") */
|
2017-05-19 17:21:22 +02:00
|
|
|
|
2018-10-06 22:39:34 +02:00
|
|
|
AVStream * stream = data->formatCtx->streams[data->streamIndex];
|
2019-10-13 18:43:13 +02:00
|
|
|
AVPacket * pkt = data->packet;
|
2017-05-19 17:21:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* read_seek shouldn't need this index, but direct access to FFmpeg's internals is no good */
|
|
|
|
/* if (data->formatCtx->iformat->read_seek || data->formatCtx->iformat->read_seek2)
|
|
|
|
return 0; */
|
|
|
|
|
2018-10-07 21:16:57 +02:00
|
|
|
/* A few formats may have a proper index (e.g. CAF/MP4/MPC/ASF/WAV/XWMA/FLAC/MP3), but some don't
|
|
|
|
* work with our custom index (CAF/MPC/MP4) and must skip it. Most formats need flag AVSEEK_FLAG_ANY,
|
|
|
|
* while XWMA (with index 0 not pointing to ts 0) needs AVSEEK_FLAG_BACKWARD to seek properly, but it
|
|
|
|
* makes OGG use the index and seek wrong instead. So for XWMA we forcefully remove the index on it's own meta. */
|
|
|
|
ts_index = av_index_search_timestamp(stream, 0, /*AVSEEK_FLAG_BACKWARD |*/ AVSEEK_FLAG_ANY);
|
|
|
|
if (ts_index >= 0) {
|
|
|
|
VGM_LOG("FFMPEG: index found for init_seek\n");
|
2017-05-19 17:21:22 +02:00
|
|
|
goto test_seek;
|
2018-10-07 21:16:57 +02:00
|
|
|
}
|
2017-05-19 17:21:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* find the first + second packets to get pos/size */
|
2019-07-21 14:41:17 +02:00
|
|
|
packet_count = 0;
|
2017-05-19 17:21:22 +02:00
|
|
|
while (1) {
|
|
|
|
av_packet_unref(pkt);
|
|
|
|
ret = av_read_frame(data->formatCtx, pkt);
|
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
if (pkt->stream_index != data->streamIndex)
|
|
|
|
continue; /* ignore non-selected streams */
|
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
//;VGM_LOG("FFMPEG: packet %i, ret=%i, pos=%i, dts=%i\n", packet_count, ret, (int32_t)pkt->pos, (int32_t)pkt->dts);
|
|
|
|
packet_count++;
|
|
|
|
if (packet_count == 1) {
|
2017-05-19 17:21:22 +02:00
|
|
|
pos = pkt->pos;
|
|
|
|
ts = pkt->dts;
|
|
|
|
continue;
|
2018-10-07 21:16:57 +02:00
|
|
|
} else { /* second found */
|
2017-05-19 17:21:22 +02:00
|
|
|
size = pkt->pos - pos; /* coded, pkt->size is decoded size */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-07-21 14:41:17 +02:00
|
|
|
if (packet_count == 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* happens in unseekable formats where FFmpeg doesn't even know its own position */
|
|
|
|
if (pos < 0)
|
2017-05-19 17:21:22 +02:00
|
|
|
goto fail;
|
2019-07-21 14:41:17 +02:00
|
|
|
|
2017-05-19 17:21:22 +02:00
|
|
|
/* in rare cases there is only one packet */
|
2018-10-07 21:16:57 +02:00
|
|
|
//if (size == 0) size = data_end - pos; /* no easy way to know, ignore (most formats don's need size) */
|
2017-05-19 17:21:22 +02:00
|
|
|
|
2018-10-07 21:16:57 +02:00
|
|
|
/* some formats don't seem to have packet.dts, pretend it's 0 */
|
2017-05-19 17:21:22 +02:00
|
|
|
if (ts == INT64_MIN)
|
|
|
|
ts = 0;
|
|
|
|
|
2018-10-07 21:16:57 +02:00
|
|
|
/* Some streams start with negative DTS (OGG/OPUS). For Ogg seeking to negative or 0 doesn't seem different.
|
|
|
|
* It does seem seeking before decoding alters a bunch of (inaudible) +-1 lower bytes though.
|
|
|
|
* Output looks correct (encoder delay, num_samples, etc) compared to libvorbis's output. */
|
2017-05-19 17:21:22 +02:00
|
|
|
VGM_ASSERT(ts != 0, "FFMPEG: negative start_ts (%li)\n", (long)ts);
|
|
|
|
if (ts != 0)
|
|
|
|
ts = 0;
|
|
|
|
|
2018-10-07 21:16:57 +02:00
|
|
|
|
2017-05-19 17:21:22 +02:00
|
|
|
/* add index 0 */
|
|
|
|
ret = av_add_index_entry(stream, pos, ts, size, distance, AVINDEX_KEYFRAME);
|
|
|
|
if ( ret < 0 )
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
test_seek:
|
2018-10-07 21:16:57 +02:00
|
|
|
/* seek to 0 test + move back to beginning, since we just consumed packets */
|
2017-05-19 17:21:22 +02:00
|
|
|
ret = avformat_seek_file(data->formatCtx, data->streamIndex, ts, ts, ts, AVSEEK_FLAG_ANY);
|
2019-07-21 14:41:17 +02:00
|
|
|
if ( ret < 0 ) {
|
|
|
|
//char test[1000] = {0}; av_strerror(ret, test, 1000); VGM_LOG("FFMPEG: ret=%i %s\n", ret, test);
|
2017-05-19 17:21:22 +02:00
|
|
|
return ret; /* we can't even reset_vgmstream the file */
|
2019-07-21 14:41:17 +02:00
|
|
|
}
|
2017-05-19 17:21:22 +02:00
|
|
|
|
|
|
|
avcodec_flush_buffers(data->codecCtx);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ******************************************** */
|
|
|
|
/* AVIO CALLBACKS */
|
|
|
|
/* ******************************************** */
|
|
|
|
|
2017-09-24 18:40:59 +02:00
|
|
|
/* AVIO callback: read stream, handling custom data */
|
2020-07-16 21:43:01 +02:00
|
|
|
static int ffmpeg_read(void* opaque, uint8_t* buf, int read_size) {
|
|
|
|
ffmpeg_codec_data* data = opaque;
|
2018-09-10 02:19:34 +02:00
|
|
|
int bytes = 0;
|
2017-05-19 17:21:22 +02:00
|
|
|
int max_to_copy = 0;
|
|
|
|
|
2017-09-24 18:40:59 +02:00
|
|
|
/* clamp reads */
|
2018-09-10 02:19:34 +02:00
|
|
|
if (data->logical_offset + read_size > data->logical_size)
|
|
|
|
read_size = data->logical_size - data->logical_offset;
|
|
|
|
if (read_size == 0)
|
|
|
|
return bytes;
|
2017-09-24 18:40:59 +02:00
|
|
|
|
|
|
|
/* handle reads on inserted header */
|
2018-09-10 02:19:34 +02:00
|
|
|
if (data->header_size && data->logical_offset < data->header_size) {
|
|
|
|
max_to_copy = (int)(data->header_size - data->logical_offset);
|
|
|
|
if (max_to_copy > read_size)
|
|
|
|
max_to_copy = read_size;
|
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
memcpy(buf, data->header_block + data->logical_offset, max_to_copy);
|
2018-09-10 02:19:34 +02:00
|
|
|
buf += max_to_copy;
|
|
|
|
read_size -= max_to_copy;
|
|
|
|
data->logical_offset += max_to_copy;
|
|
|
|
|
|
|
|
if (read_size == 0) {
|
|
|
|
return max_to_copy; /* offset still in header */
|
2017-05-19 17:21:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-24 18:40:59 +02:00
|
|
|
/* main read */
|
2018-09-10 02:19:34 +02:00
|
|
|
bytes = read_streamfile(buf, data->offset, read_size, data->streamfile);
|
|
|
|
data->logical_offset += bytes;
|
|
|
|
data->offset += bytes;
|
|
|
|
return bytes + max_to_copy;
|
2017-05-19 17:21:22 +02:00
|
|
|
}
|
|
|
|
|
2017-09-24 18:40:59 +02:00
|
|
|
/* AVIO callback: seek stream, handling custom data */
|
2020-07-16 21:43:01 +02:00
|
|
|
static int64_t ffmpeg_seek(void* opaque, int64_t offset, int whence) {
|
|
|
|
ffmpeg_codec_data* data = opaque;
|
2017-05-19 17:21:22 +02:00
|
|
|
int ret = 0;
|
|
|
|
|
2017-09-24 18:40:59 +02:00
|
|
|
/* get cache'd size */
|
2017-05-19 17:21:22 +02:00
|
|
|
if (whence & AVSEEK_SIZE) {
|
2018-09-10 02:19:34 +02:00
|
|
|
return data->logical_size;
|
2017-05-19 17:21:22 +02:00
|
|
|
}
|
2017-09-24 18:40:59 +02:00
|
|
|
|
2017-05-19 17:21:22 +02:00
|
|
|
whence &= ~(AVSEEK_SIZE | AVSEEK_FORCE);
|
2017-09-24 18:40:59 +02:00
|
|
|
/* find the final offset FFmpeg sees (within fake header + virtual size) */
|
2017-05-19 17:21:22 +02:00
|
|
|
switch (whence) {
|
2017-09-24 18:40:59 +02:00
|
|
|
case SEEK_SET: /* absolute */
|
2017-05-19 17:21:22 +02:00
|
|
|
break;
|
|
|
|
|
2017-09-24 18:40:59 +02:00
|
|
|
case SEEK_CUR: /* relative to current */
|
2018-09-10 02:19:34 +02:00
|
|
|
offset += data->logical_offset;
|
2017-05-19 17:21:22 +02:00
|
|
|
break;
|
|
|
|
|
2017-09-24 18:40:59 +02:00
|
|
|
case SEEK_END: /* relative to file end (should be negative) */
|
2018-09-10 02:19:34 +02:00
|
|
|
offset += data->logical_size;
|
2017-05-19 17:21:22 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-09-24 18:40:59 +02:00
|
|
|
/* clamp offset; fseek does this too */
|
2018-09-10 02:19:34 +02:00
|
|
|
if (offset > data->logical_size)
|
|
|
|
offset = data->logical_size;
|
2017-09-24 18:40:59 +02:00
|
|
|
else if (offset < 0)
|
|
|
|
offset = 0;
|
|
|
|
|
|
|
|
/* seeks inside fake header */
|
|
|
|
if (offset < data->header_size) {
|
2018-09-10 02:19:34 +02:00
|
|
|
data->logical_offset = offset;
|
|
|
|
data->offset = data->start;
|
2017-09-24 18:40:59 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* main seek */
|
2018-09-10 02:19:34 +02:00
|
|
|
data->logical_offset = offset;
|
|
|
|
data->offset = data->start + (offset - data->header_size);
|
2017-05-19 17:21:22 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ******************************************** */
|
|
|
|
/* MAIN INIT/DECODER */
|
|
|
|
/* ******************************************** */
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
ffmpeg_codec_data* init_ffmpeg_offset(STREAMFILE* sf, uint64_t start, uint64_t size) {
|
|
|
|
return init_ffmpeg_header_offset(sf, NULL,0, start,size);
|
2017-08-19 10:28:28 +02:00
|
|
|
}
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
ffmpeg_codec_data* init_ffmpeg_header_offset(STREAMFILE* sf, uint8_t * header, uint64_t header_size, uint64_t start, uint64_t size) {
|
|
|
|
return init_ffmpeg_header_offset_subsong(sf, header, header_size, start, size, 0);
|
2018-10-07 03:26:05 +02:00
|
|
|
}
|
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
|
2017-05-19 17:21:22 +02:00
|
|
|
/**
|
|
|
|
* Manually init FFmpeg, from a fake header / offset.
|
|
|
|
*
|
|
|
|
* Takes a fake header, to trick FFmpeg into demuxing/decoding the stream.
|
|
|
|
* This header will be seamlessly inserted before 'start' offset, and total filesize will be 'header_size' + 'size'.
|
|
|
|
* The header buffer will be copied and memory-managed internally.
|
2017-08-19 10:28:28 +02:00
|
|
|
* NULL header can used given if the stream has internal data recognized by FFmpeg at offset.
|
2018-10-07 03:26:05 +02:00
|
|
|
* Stream index can be passed if the file has multiple audio streams that FFmpeg can demux (1=first).
|
2017-05-19 17:21:22 +02:00
|
|
|
*/
|
2020-07-16 21:43:01 +02:00
|
|
|
ffmpeg_codec_data* init_ffmpeg_header_offset_subsong(STREAMFILE* sf, uint8_t* header, uint64_t header_size, uint64_t start, uint64_t size, int target_subsong) {
|
|
|
|
ffmpeg_codec_data* data = NULL;
|
2019-07-21 14:41:17 +02:00
|
|
|
int errcode;
|
2018-09-10 02:19:34 +02:00
|
|
|
|
2017-05-19 17:21:22 +02:00
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
/* check values */
|
|
|
|
if ((header && !header_size) || (!header && header_size))
|
|
|
|
goto fail;
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
if (size == 0 || start + size > get_streamfile_size(sf)) {
|
|
|
|
VGM_LOG("FFMPEG: wrong start+size found: %x + %x > %x \n", (uint32_t)start, (uint32_t)size, get_streamfile_size(sf));
|
|
|
|
size = get_streamfile_size(sf) - start;
|
2019-07-21 14:41:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* initial FFmpeg setup */
|
2017-05-19 17:21:22 +02:00
|
|
|
g_init_ffmpeg();
|
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
|
|
|
|
/* basic setup */
|
|
|
|
data = calloc(1, sizeof(ffmpeg_codec_data));
|
2017-05-19 17:21:22 +02:00
|
|
|
if (!data) return NULL;
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
data->streamfile = reopen_streamfile(sf, 0);
|
2017-05-19 17:21:22 +02:00
|
|
|
if (!data->streamfile) goto fail;
|
|
|
|
|
2017-09-24 18:40:59 +02:00
|
|
|
/* fake header to trick FFmpeg into demuxing/decoding the stream */
|
2017-05-19 17:21:22 +02:00
|
|
|
if (header_size > 0) {
|
|
|
|
data->header_size = header_size;
|
2019-10-13 18:43:13 +02:00
|
|
|
data->header_block = av_memdup(header, header_size);
|
|
|
|
if (!data->header_block) goto fail;
|
2017-05-19 17:21:22 +02:00
|
|
|
}
|
|
|
|
|
2018-09-10 02:19:34 +02:00
|
|
|
data->start = start;
|
2019-07-21 14:41:17 +02:00
|
|
|
data->offset = data->start;
|
2018-09-10 02:19:34 +02:00
|
|
|
data->size = size;
|
|
|
|
data->logical_offset = 0;
|
|
|
|
data->logical_size = data->header_size + data->size;
|
2017-09-24 18:40:59 +02:00
|
|
|
|
2017-05-19 17:21:22 +02:00
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
/* setup FFmpeg's internals, attempt to autodetect format and gather some info */
|
|
|
|
errcode = init_ffmpeg_config(data, target_subsong, 0);
|
|
|
|
if (errcode < 0) goto fail;
|
2017-05-19 17:21:22 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* reset non-zero values */
|
|
|
|
data->read_packet = 1;
|
2017-05-19 17:21:22 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* setup other values */
|
|
|
|
{
|
|
|
|
AVStream *stream = data->formatCtx->streams[data->streamIndex];
|
|
|
|
AVRational tb = {0};
|
|
|
|
|
|
|
|
/* derive info */
|
|
|
|
data->sampleRate = data->codecCtx->sample_rate;
|
|
|
|
data->channels = data->codecCtx->channels;
|
|
|
|
data->bitrate = (int)(data->codecCtx->bit_rate);
|
|
|
|
#if 0
|
|
|
|
data->blockAlign = data->codecCtx->block_align;
|
|
|
|
data->frameSize = data->codecCtx->frame_size;
|
|
|
|
if(data->frameSize == 0) /* some formats don't set frame_size but can get on request, and vice versa */
|
|
|
|
data->frameSize = av_get_audio_frame_duration(data->codecCtx,0);
|
|
|
|
#endif
|
2017-05-19 17:21:22 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* try to guess frames/samples (duration isn't always set) */
|
|
|
|
tb.num = 1; tb.den = data->codecCtx->sample_rate;
|
|
|
|
data->totalSamples = av_rescale_q(stream->duration, stream->time_base, tb);
|
|
|
|
if (data->totalSamples < 0)
|
|
|
|
data->totalSamples = 0; /* caller must consider this */
|
|
|
|
|
|
|
|
/* expose start samples to be skipped (encoder delay, usually added by MDCT-based encoders like AAC/MP3/ATRAC3/XMA/etc)
|
|
|
|
* get after init_seek because some demuxers like AAC only fill skip_samples for the first packet */
|
|
|
|
if (stream->start_skip_samples) /* samples to skip in the first packet */
|
|
|
|
data->skipSamples = stream->start_skip_samples;
|
|
|
|
else if (stream->skip_samples) /* samples to skip in any packet (first in this case), used sometimes instead (ex. AAC) */
|
|
|
|
data->skipSamples = stream->skip_samples;
|
|
|
|
|
|
|
|
/* check ways to skip encoder delay/padding, for debugging purposes (some may be old/unused/encoder only/etc) */
|
|
|
|
VGM_ASSERT(data->codecCtx->delay > 0, "FFMPEG: delay %i\n", (int)data->codecCtx->delay);//delay: OPUS
|
|
|
|
//VGM_ASSERT(data->codecCtx->internal->skip_samples > 0, ...); /* for codec use, not accessible */
|
|
|
|
VGM_ASSERT(stream->codecpar->initial_padding > 0, "FFMPEG: initial_padding %i\n", (int)stream->codecpar->initial_padding);//delay: OPUS
|
|
|
|
VGM_ASSERT(stream->codecpar->trailing_padding > 0, "FFMPEG: trailing_padding %i\n", (int)stream->codecpar->trailing_padding);
|
|
|
|
VGM_ASSERT(stream->codecpar->seek_preroll > 0, "FFMPEG: seek_preroll %i\n", (int)stream->codecpar->seek_preroll);//seek delay: OPUS
|
|
|
|
VGM_ASSERT(stream->skip_samples > 0, "FFMPEG: skip_samples %i\n", (int)stream->skip_samples); //delay: MP4
|
|
|
|
VGM_ASSERT(stream->start_skip_samples > 0, "FFMPEG: start_skip_samples %i\n", (int)stream->start_skip_samples); //delay: MP3
|
|
|
|
VGM_ASSERT(stream->first_discard_sample > 0, "FFMPEG: first_discard_sample %i\n", (int)stream->first_discard_sample); //padding: MP3
|
|
|
|
VGM_ASSERT(stream->last_discard_sample > 0, "FFMPEG: last_discard_sample %i\n", (int)stream->last_discard_sample); //padding: MP3
|
|
|
|
/* also negative timestamp for formats like OGG/OPUS */
|
|
|
|
/* not using it: BINK, FLAC, ATRAC3, XMA, MPC, WMA (may use internal skip samples) */
|
|
|
|
//todo: double check Opus behavior
|
2017-05-19 17:21:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
/* setup decent seeking for faulty formats */
|
|
|
|
errcode = init_seek(data);
|
|
|
|
if (errcode < 0) {
|
2019-10-13 20:13:15 +02:00
|
|
|
VGM_LOG("FFMPEG: can't init_seek, error=%i (using force_seek)\n", errcode);
|
|
|
|
ffmpeg_set_force_seek(data);
|
2019-07-21 14:41:17 +02:00
|
|
|
}
|
2017-05-19 17:21:22 +02:00
|
|
|
|
|
|
|
return data;
|
|
|
|
fail:
|
|
|
|
free_ffmpeg(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
static int init_ffmpeg_config(ffmpeg_codec_data* data, int target_subsong, int reset) {
|
2019-07-21 14:41:17 +02:00
|
|
|
int errcode = 0;
|
|
|
|
|
|
|
|
/* basic IO/format setup */
|
|
|
|
data->buffer = av_malloc(FFMPEG_DEFAULT_IO_BUFFER_SIZE);
|
|
|
|
if (!data->buffer) goto fail;
|
|
|
|
|
2019-09-29 18:25:24 +02:00
|
|
|
data->ioCtx = avio_alloc_context(data->buffer, FFMPEG_DEFAULT_IO_BUFFER_SIZE, 0, data, ffmpeg_read, 0, ffmpeg_seek);
|
2019-07-21 14:41:17 +02:00
|
|
|
if (!data->ioCtx) goto fail;
|
|
|
|
|
|
|
|
data->formatCtx = avformat_alloc_context();
|
|
|
|
if (!data->formatCtx) goto fail;
|
|
|
|
|
|
|
|
data->formatCtx->pb = data->ioCtx;
|
|
|
|
|
2019-09-29 18:25:24 +02:00
|
|
|
//data->inputFormatCtx = av_find_input_format("h264"); /* set directly? */
|
|
|
|
/* on reset could use AVFormatContext.iformat to reload old format too */
|
|
|
|
|
|
|
|
errcode = avformat_open_input(&data->formatCtx, NULL /*""*/, NULL, NULL);
|
2019-07-21 14:41:17 +02:00
|
|
|
if (errcode < 0) goto fail;
|
|
|
|
|
|
|
|
errcode = avformat_find_stream_info(data->formatCtx, NULL);
|
|
|
|
if (errcode < 0) goto fail;
|
|
|
|
|
|
|
|
/* find valid audio stream and set other streams to discard */
|
|
|
|
{
|
|
|
|
int i, streamIndex, streamCount;
|
|
|
|
|
|
|
|
streamIndex = -1;
|
|
|
|
streamCount = 0;
|
|
|
|
if (reset)
|
|
|
|
streamIndex = data->streamIndex;
|
|
|
|
|
|
|
|
for (i = 0; i < data->formatCtx->nb_streams; ++i) {
|
|
|
|
AVStream *stream = data->formatCtx->streams[i];
|
|
|
|
|
|
|
|
if (stream->codecpar && stream->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
|
|
|
|
streamCount++;
|
|
|
|
|
|
|
|
/* select Nth audio stream if specified, or first one */
|
|
|
|
if (streamIndex < 0 || (target_subsong > 0 && streamCount == target_subsong)) {
|
|
|
|
streamIndex = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i != streamIndex)
|
|
|
|
stream->discard = AVDISCARD_ALL; /* disable demuxing for other streams */
|
|
|
|
}
|
|
|
|
if (streamCount < target_subsong) goto fail;
|
|
|
|
if (streamIndex < 0) goto fail;
|
|
|
|
|
|
|
|
data->streamIndex = streamIndex;
|
|
|
|
data->streamCount = streamCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* setup codec with stream info */
|
|
|
|
data->codecCtx = avcodec_alloc_context3(NULL);
|
|
|
|
if (!data->codecCtx) goto fail;
|
|
|
|
|
|
|
|
errcode = avcodec_parameters_to_context(data->codecCtx, ((AVStream*)data->formatCtx->streams[data->streamIndex])->codecpar);
|
|
|
|
if (errcode < 0) goto fail;
|
|
|
|
|
|
|
|
//av_codec_set_pkt_timebase(data->codecCtx, stream->time_base); /* deprecated and seemingly not needed */
|
|
|
|
|
|
|
|
data->codec = avcodec_find_decoder(data->codecCtx->codec_id);
|
|
|
|
if (!data->codec) goto fail;
|
|
|
|
|
|
|
|
errcode = avcodec_open2(data->codecCtx, data->codec, NULL);
|
|
|
|
if (errcode < 0) goto fail;
|
|
|
|
|
|
|
|
/* prepare codec and frame/packet buffers */
|
2019-10-13 18:43:13 +02:00
|
|
|
data->packet = av_malloc(sizeof(AVPacket)); /* av_packet_alloc? */
|
|
|
|
if (!data->packet) goto fail;
|
|
|
|
av_new_packet(data->packet, 0);
|
2019-09-29 18:25:24 +02:00
|
|
|
//av_packet_unref?
|
2019-07-21 14:41:17 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
data->frame = av_frame_alloc();
|
|
|
|
if (!data->frame) goto fail;
|
|
|
|
av_frame_unref(data->frame);
|
|
|
|
|
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
return 0;
|
|
|
|
fail:
|
|
|
|
if (errcode < 0)
|
|
|
|
return errcode;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* decodes a new frame to internal data */
|
2020-07-16 21:43:01 +02:00
|
|
|
static int decode_ffmpeg_frame(ffmpeg_codec_data* data) {
|
2019-10-13 18:43:13 +02:00
|
|
|
int errcode;
|
|
|
|
int frame_error = 0;
|
2018-10-06 22:39:34 +02:00
|
|
|
|
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
if (data->bad_init) {
|
2019-10-13 18:43:13 +02:00
|
|
|
goto fail;
|
2019-07-21 14:41:17 +02:00
|
|
|
}
|
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* ignore once file is done (but not on EOF as FFmpeg can output samples until end_of_audio) */
|
|
|
|
if (/*data->end_of_stream ||*/ data->end_of_audio) {
|
2018-10-06 22:39:34 +02:00
|
|
|
VGM_LOG("FFMPEG: decode after end of audio\n");
|
2019-10-13 18:43:13 +02:00
|
|
|
goto fail;
|
2016-07-17 08:02:27 +02:00
|
|
|
}
|
2018-10-06 22:39:34 +02:00
|
|
|
|
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* read data packets until valid is found */
|
|
|
|
while (data->read_packet && !data->end_of_audio) {
|
|
|
|
if (!data->end_of_stream) {
|
|
|
|
/* reset old packet */
|
|
|
|
av_packet_unref(data->packet);
|
2016-12-01 23:49:00 +01:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* read encoded data from demuxer into packet */
|
|
|
|
errcode = av_read_frame(data->formatCtx, data->packet);
|
|
|
|
if (errcode < 0) {
|
|
|
|
if (errcode == AVERROR_EOF) {
|
|
|
|
data->end_of_stream = 1; /* no more data to read (but may "drain" samples) */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
VGM_LOG("FFMPEG: av_read_frame errcode=%i\n", errcode);
|
|
|
|
frame_error = 1; //goto fail;
|
2016-07-17 08:02:27 +02:00
|
|
|
}
|
2018-10-06 22:39:34 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
if (data->formatCtx->pb && data->formatCtx->pb->error) {
|
|
|
|
VGM_LOG("FFMPEG: pb error=%i\n", data->formatCtx->pb->error);
|
|
|
|
frame_error = 1; //goto fail;
|
2016-07-17 08:02:27 +02:00
|
|
|
}
|
|
|
|
}
|
2019-07-21 14:41:17 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* ignore non-selected streams */
|
|
|
|
if (data->packet->stream_index != data->streamIndex)
|
|
|
|
continue;
|
2016-07-17 08:02:27 +02:00
|
|
|
}
|
2018-10-06 22:39:34 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* send encoded data to frame decoder (NULL at EOF to "drain" samples below) */
|
|
|
|
errcode = avcodec_send_packet(data->codecCtx, data->end_of_stream ? NULL : data->packet);
|
|
|
|
if (errcode < 0) {
|
|
|
|
if (errcode != AVERROR(EAGAIN)) {
|
|
|
|
VGM_LOG("FFMPEG: avcodec_send_packet errcode=%i\n", errcode);
|
|
|
|
frame_error = 1; //goto fail;
|
2018-10-06 22:39:34 +02:00
|
|
|
}
|
2019-10-13 18:43:13 +02:00
|
|
|
}
|
2018-10-06 22:39:34 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
data->read_packet = 0; /* got data */
|
|
|
|
}
|
2018-10-06 22:39:34 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* decode frame samples from sent packet or "drain" samples*/
|
|
|
|
if (!frame_error) {
|
|
|
|
/* receive uncompressed sample data from decoded frame */
|
|
|
|
errcode = avcodec_receive_frame(data->codecCtx, data->frame);
|
|
|
|
if (errcode < 0) {
|
|
|
|
if (errcode == AVERROR_EOF) {
|
|
|
|
data->end_of_audio = 1; /* no more audio, file is fully decoded */
|
|
|
|
}
|
|
|
|
else if (errcode == AVERROR(EAGAIN)) {
|
|
|
|
data->read_packet = 1; /* 0 samples, request more encoded data */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
VGM_LOG("FFMPEG: avcodec_receive_frame errcode=%i\n", errcode);
|
|
|
|
frame_error = 1;//goto fail;
|
2016-07-17 08:02:27 +02:00
|
|
|
}
|
|
|
|
}
|
2019-10-13 18:43:13 +02:00
|
|
|
}
|
2018-10-06 22:39:34 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* on frame_error simply uses current frame (possibly with nb_samples=0), which mirrors ffmpeg's output
|
|
|
|
* (ex. BlazBlue X360 022_btl_az.xwb) */
|
2018-10-06 22:39:34 +02:00
|
|
|
|
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
data->samples_consumed = 0;
|
|
|
|
data->samples_filled = data->frame->nb_samples;
|
|
|
|
return 1;
|
|
|
|
fail:
|
|
|
|
return 0;
|
|
|
|
}
|
2016-11-20 15:39:21 +01:00
|
|
|
|
|
|
|
|
2019-10-20 23:50:29 +02:00
|
|
|
/* When casting float to int value is simply truncated:
|
|
|
|
* - 0.0000518798828125 * 32768.0f = 1.7f, (int)1.7 = 1, (int)-1.7 = -1
|
|
|
|
* (instead of 1.7 = 2, -1.7 = -2)
|
|
|
|
*
|
|
|
|
* Alts for more accurate rounding could be:
|
|
|
|
* - (int)floor(f32 * 32768.0) //not quite ok negatives
|
|
|
|
* - (int)floor(f32 * 32768.0f + 0.5f) //Xiph Vorbis style
|
|
|
|
* - (int)(f32 < 0 ? f32 - 0.5f : f + 0.5f)
|
|
|
|
* - (((int) (f1 + 32768.5)) - 32768)
|
|
|
|
* - etc
|
|
|
|
* but since +-1 isn't really audible we'll just cast as it's the fastest.
|
|
|
|
*
|
|
|
|
* Regular C float-to-int casting ("int i = (int)f") is somewhat slow due to IEEE
|
|
|
|
* float requirements, but C99 adds some faster-but-less-precise casting functions
|
|
|
|
* we try to use (returning "long", though). They work ok without "fast float math" compiler
|
|
|
|
* flags, but probably should be enabled anyway to ensure no extra IEEE checks are needed.
|
2019-11-04 23:29:34 +01:00
|
|
|
* MSVC added this in VS2015 (_MSC_VER 1900) but don't seem correctly optimized and is very slow.
|
2019-10-20 23:50:29 +02:00
|
|
|
*/
|
|
|
|
static inline int float_to_int(float val) {
|
2019-11-04 23:29:34 +01:00
|
|
|
#if defined(_MSC_VER)
|
2019-10-20 23:50:29 +02:00
|
|
|
return (int)val;
|
|
|
|
#else
|
|
|
|
return lrintf(val);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
static inline int double_to_int(double val) {
|
2019-11-04 23:29:34 +01:00
|
|
|
#if defined(_MSC_VER)
|
2019-10-20 23:50:29 +02:00
|
|
|
return (int)val;
|
|
|
|
#else
|
|
|
|
return lrint(val); /* returns long tho */
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
/* sample copy helpers, using different functions to minimize branches.
|
|
|
|
*
|
|
|
|
* in theory, small optimizations like *outbuf++ vs outbuf[i] or alt clamping
|
|
|
|
* would matter for performance, but in practice aren't very noticeable;
|
|
|
|
* keep it simple for now until more tests are done.
|
|
|
|
*
|
|
|
|
* in normal (interleaved) formats samples are laid out straight
|
2019-11-04 23:29:34 +01:00
|
|
|
* (ibuf[s*chs+ch], ex. 4ch with 4s: 0 1 2 3 0 1 2 3 0 1 2 3 0 1 2 3)
|
2019-10-13 18:43:13 +02:00
|
|
|
* in "p" (planar) formats samples are in planes per channel
|
2019-11-04 23:29:34 +01:00
|
|
|
* (ibuf[ch][s], ex. 4ch with 4s: 0 0 0 0 1 1 1 1 2 2 2 2 3 3 3 3)
|
2019-10-13 18:43:13 +02:00
|
|
|
*
|
|
|
|
* alt float clamping:
|
|
|
|
* clamp_float(f32)
|
|
|
|
* int s16 = (int)(f32 * 32768.0f);
|
|
|
|
* if ((unsigned)(s16 + 0x8000) & 0xFFFF0000)
|
|
|
|
* s16 = (s16 >> 31) ^ 0x7FFF;
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void samples_silence_s16(sample_t* obuf, int ochs, int samples) {
|
|
|
|
int s, total_samples = samples * ochs;
|
|
|
|
for (s = 0; s < total_samples; s++) {
|
|
|
|
obuf[s] = 0; /* memset'd */
|
|
|
|
}
|
|
|
|
}
|
2018-10-06 22:39:34 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
static void samples_u8_to_s16(sample_t* obuf, uint8_t* ibuf, int ichs, int samples, int skip) {
|
|
|
|
int s, total_samples = samples * ichs;
|
|
|
|
for (s = 0; s < total_samples; s++) {
|
|
|
|
obuf[s] = ((int)ibuf[skip*ichs + s] - 0x80) << 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static void samples_u8p_to_s16(sample_t* obuf, uint8_t** ibuf, int ichs, int samples, int skip) {
|
|
|
|
int s, ch;
|
|
|
|
for (ch = 0; ch < ichs; ch++) {
|
|
|
|
for (s = 0; s < samples; s++) {
|
|
|
|
obuf[s*ichs + ch] = ((int)ibuf[ch][skip + s] - 0x80) << 8;
|
2016-07-17 08:02:27 +02:00
|
|
|
}
|
2019-10-13 18:43:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
static void samples_s16_to_s16(sample_t* obuf, int16_t* ibuf, int ichs, int samples, int skip) {
|
|
|
|
int s, total_samples = samples * ichs;
|
|
|
|
for (s = 0; s < total_samples; s++) {
|
|
|
|
obuf[s] = ibuf[skip*ichs + s]; /* maybe should mempcy */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static void samples_s16p_to_s16(sample_t* obuf, int16_t** ibuf, int ichs, int samples, int skip) {
|
|
|
|
int s, ch;
|
|
|
|
for (ch = 0; ch < ichs; ch++) {
|
|
|
|
for (s = 0; s < samples; s++) {
|
|
|
|
obuf[s*ichs + ch] = ibuf[ch][skip + s];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static void samples_s32_to_s16(sample_t* obuf, int32_t* ibuf, int ichs, int samples, int skip) {
|
|
|
|
int s, total_samples = samples * ichs;
|
|
|
|
for (s = 0; s < total_samples; s++) {
|
|
|
|
obuf[s] = ibuf[skip*ichs + s] >> 16;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static void samples_s32p_to_s16(sample_t* obuf, int32_t** ibuf, int ichs, int samples, int skip) {
|
|
|
|
int s, ch;
|
|
|
|
for (ch = 0; ch < ichs; ch++) {
|
|
|
|
for (s = 0; s < samples; s++) {
|
|
|
|
obuf[s*ichs + ch] = ibuf[ch][skip + s] >> 16;
|
2016-07-17 08:02:27 +02:00
|
|
|
}
|
2019-10-13 18:43:13 +02:00
|
|
|
}
|
|
|
|
}
|
2019-10-13 18:55:52 +02:00
|
|
|
static void samples_flt_to_s16(sample_t* obuf, float* ibuf, int ichs, int samples, int skip, int invert) {
|
2019-10-13 18:43:13 +02:00
|
|
|
int s, total_samples = samples * ichs;
|
2019-10-13 18:55:52 +02:00
|
|
|
float scale = invert ? -32768.0f : 32768.0f;
|
2019-10-13 18:43:13 +02:00
|
|
|
for (s = 0; s < total_samples; s++) {
|
2019-10-20 23:50:29 +02:00
|
|
|
obuf[s] = clamp16(float_to_int(ibuf[skip*ichs + s] * scale));
|
2019-10-13 18:43:13 +02:00
|
|
|
}
|
|
|
|
}
|
2019-10-13 18:55:52 +02:00
|
|
|
static void samples_fltp_to_s16(sample_t* obuf, float** ibuf, int ichs, int samples, int skip, int invert) {
|
2019-10-13 18:43:13 +02:00
|
|
|
int s, ch;
|
2019-10-13 18:55:52 +02:00
|
|
|
float scale = invert ? -32768.0f : 32768.0f;
|
2019-10-13 18:43:13 +02:00
|
|
|
for (ch = 0; ch < ichs; ch++) {
|
|
|
|
for (s = 0; s < samples; s++) {
|
2019-10-20 23:50:29 +02:00
|
|
|
obuf[s*ichs + ch] = clamp16(float_to_int(ibuf[ch][skip + s] * scale));
|
2019-10-13 18:43:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static void samples_dbl_to_s16(sample_t* obuf, double* ibuf, int ichs, int samples, int skip) {
|
|
|
|
int s, total_samples = samples * ichs;
|
|
|
|
for (s = 0; s < total_samples; s++) {
|
2019-10-20 23:50:29 +02:00
|
|
|
obuf[s] = clamp16(double_to_int(ibuf[skip*ichs + s] * 32768.0));
|
2019-10-13 18:43:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
static void samples_dblp_to_s16(sample_t* obuf, double** inbuf, int ichs, int samples, int skip) {
|
|
|
|
int s, ch;
|
|
|
|
for (ch = 0; ch < ichs; ch++) {
|
|
|
|
for (s = 0; s < samples; s++) {
|
2019-10-20 23:50:29 +02:00
|
|
|
obuf[s*ichs + ch] = clamp16(double_to_int(inbuf[ch][skip + s] * 32768.0));
|
2019-10-13 18:43:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
static void copy_samples(ffmpeg_codec_data* data, sample_t* outbuf, int samples_to_do) {
|
2019-10-13 18:43:13 +02:00
|
|
|
int channels = data->codecCtx->channels;
|
|
|
|
int is_planar = av_sample_fmt_is_planar(data->codecCtx->sample_fmt) && (channels > 1);
|
|
|
|
void* ibuf;
|
2018-10-06 22:39:34 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
if (is_planar) {
|
|
|
|
ibuf = data->frame->extended_data;
|
|
|
|
}
|
|
|
|
else {
|
2019-10-16 04:54:11 +02:00
|
|
|
ibuf = data->frame->data[0];
|
2016-07-17 08:02:27 +02:00
|
|
|
}
|
2018-10-06 22:39:34 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
switch (data->codecCtx->sample_fmt) {
|
|
|
|
/* unused? */
|
2019-10-19 00:42:46 +02:00
|
|
|
case AV_SAMPLE_FMT_U8P: if (is_planar) { samples_u8p_to_s16(outbuf, ibuf, channels, samples_to_do, data->samples_consumed); break; }
|
2019-10-13 18:43:13 +02:00
|
|
|
case AV_SAMPLE_FMT_U8: samples_u8_to_s16(outbuf, ibuf, channels, samples_to_do, data->samples_consumed); break;
|
|
|
|
/* common */
|
2019-10-19 00:42:46 +02:00
|
|
|
case AV_SAMPLE_FMT_S16P: if (is_planar) { samples_s16p_to_s16(outbuf, ibuf, channels, samples_to_do, data->samples_consumed); break; }
|
2019-10-13 18:43:13 +02:00
|
|
|
case AV_SAMPLE_FMT_S16: samples_s16_to_s16(outbuf, ibuf, channels, samples_to_do, data->samples_consumed); break;
|
|
|
|
/* possibly FLAC and other lossless codecs */
|
2019-10-19 00:42:46 +02:00
|
|
|
case AV_SAMPLE_FMT_S32P: if (is_planar) { samples_s32p_to_s16(outbuf, ibuf, channels, samples_to_do, data->samples_consumed); break; }
|
2019-10-13 18:43:13 +02:00
|
|
|
case AV_SAMPLE_FMT_S32: samples_s32_to_s16(outbuf, ibuf, channels, samples_to_do, data->samples_consumed); break;
|
|
|
|
/* mainly MDCT-like codecs (Ogg, AAC, etc) */
|
2019-10-19 00:42:46 +02:00
|
|
|
case AV_SAMPLE_FMT_FLTP: if (is_planar) { samples_fltp_to_s16(outbuf, ibuf, channels, samples_to_do, data->samples_consumed, data->invert_floats_set); break; }
|
2019-10-13 18:55:52 +02:00
|
|
|
case AV_SAMPLE_FMT_FLT: samples_flt_to_s16(outbuf, ibuf, channels, samples_to_do, data->samples_consumed, data->invert_floats_set); break;
|
2019-10-13 18:43:13 +02:00
|
|
|
/* possibly PCM64 only (not enabled) */
|
2019-10-19 00:42:46 +02:00
|
|
|
case AV_SAMPLE_FMT_DBLP: if (is_planar) { samples_dblp_to_s16(outbuf, ibuf, channels, samples_to_do, data->samples_consumed); break; }
|
2019-10-13 18:43:13 +02:00
|
|
|
case AV_SAMPLE_FMT_DBL: samples_dbl_to_s16(outbuf, ibuf, channels, samples_to_do, data->samples_consumed); break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2018-10-06 22:39:34 +02:00
|
|
|
|
2019-03-30 02:15:22 +01:00
|
|
|
if (data->channel_remap_set)
|
2019-10-13 18:43:13 +02:00
|
|
|
remap_audio(outbuf, samples_to_do, channels, data->channel_remap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* decode samples of any kind of FFmpeg format */
|
2020-07-16 21:43:01 +02:00
|
|
|
void decode_ffmpeg(VGMSTREAM* vgmstream, sample_t* outbuf, int32_t samples_to_do, int channels) {
|
|
|
|
ffmpeg_codec_data* data = vgmstream->codec_data;
|
2018-10-06 22:39:34 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
|
|
|
|
while (samples_to_do > 0) {
|
|
|
|
|
|
|
|
if (data->samples_consumed < data->samples_filled) {
|
|
|
|
/* consume samples */
|
|
|
|
int samples_to_get = (data->samples_filled - data->samples_consumed);
|
|
|
|
|
|
|
|
if (data->samples_discard) {
|
|
|
|
/* discard samples for looping */
|
|
|
|
if (samples_to_get > data->samples_discard)
|
|
|
|
samples_to_get = data->samples_discard;
|
|
|
|
data->samples_discard -= samples_to_get;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* get max samples and copy */
|
|
|
|
if (samples_to_get > samples_to_do)
|
|
|
|
samples_to_get = samples_to_do;
|
|
|
|
|
|
|
|
copy_samples(data, outbuf, samples_to_get);
|
|
|
|
|
|
|
|
samples_to_do -= samples_to_get;
|
|
|
|
outbuf += samples_to_get * channels;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mark consumed samples */
|
|
|
|
data->samples_consumed += samples_to_get;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int ok = decode_ffmpeg_frame(data);
|
|
|
|
if (!ok) goto decode_fail;
|
|
|
|
}
|
2018-10-06 22:39:34 +02:00
|
|
|
}
|
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
decode_fail:
|
|
|
|
VGM_LOG("FFMPEG: decode fail, missing %i samples\n", samples_to_do);
|
|
|
|
samples_silence_s16(outbuf, channels, samples_to_do);
|
2016-07-17 08:02:27 +02:00
|
|
|
}
|
|
|
|
|
2016-11-30 23:48:49 +01:00
|
|
|
|
2017-05-19 17:21:22 +02:00
|
|
|
/* ******************************************** */
|
|
|
|
/* UTILS */
|
|
|
|
/* ******************************************** */
|
|
|
|
|
2020-07-17 22:35:32 +02:00
|
|
|
void reset_ffmpeg(ffmpeg_codec_data* data) {
|
|
|
|
seek_ffmpeg(data, 0);
|
2019-07-21 14:41:17 +02:00
|
|
|
}
|
|
|
|
|
2020-07-17 22:35:32 +02:00
|
|
|
void seek_ffmpeg(ffmpeg_codec_data* data, int32_t num_sample) {
|
2018-03-10 16:59:00 +01:00
|
|
|
if (!data) return;
|
2016-12-01 19:58:51 +01:00
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
/* Start from 0 and discard samples until sample (slower but not too noticeable).
|
2019-10-13 18:43:13 +02:00
|
|
|
* Due to many FFmpeg quirks seeking to a sample is erratic at best in most formats. */
|
2017-02-12 13:17:01 +01:00
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
if (data->force_seek) {
|
|
|
|
int errcode;
|
2017-02-12 13:17:01 +01:00
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
/* kill+redo everything to allow seeking for extra-buggy formats,
|
|
|
|
* kinda horrid but seems fast enough and very few formats need this */
|
2016-12-01 19:58:51 +01:00
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
free_ffmpeg_config(data);
|
2016-11-30 23:48:49 +01:00
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
data->offset = data->start;
|
|
|
|
data->logical_offset = 0;
|
2016-11-30 23:48:49 +01:00
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
errcode = init_ffmpeg_config(data, 0, 1);
|
|
|
|
if (errcode < 0) goto fail;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
avformat_seek_file(data->formatCtx, data->streamIndex, 0, 0, 0, AVSEEK_FLAG_ANY);
|
|
|
|
avcodec_flush_buffers(data->codecCtx);
|
|
|
|
}
|
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
data->samples_consumed = 0;
|
|
|
|
data->samples_filled = 0;
|
|
|
|
data->samples_discard = num_sample;
|
2016-11-30 23:48:49 +01:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
data->read_packet = 1;
|
|
|
|
data->end_of_stream = 0;
|
|
|
|
data->end_of_audio = 0;
|
2016-11-30 23:48:49 +01:00
|
|
|
|
2017-02-12 13:17:01 +01:00
|
|
|
/* consider skip samples (encoder delay), if manually set (otherwise let FFmpeg handle it) */
|
2019-10-13 18:43:13 +02:00
|
|
|
if (data->skip_samples_set) {
|
2017-02-12 13:17:01 +01:00
|
|
|
AVStream *stream = data->formatCtx->streams[data->streamIndex];
|
|
|
|
/* sometimes (ex. AAC) after seeking to the first packet skip_samples is restored, but we want our value */
|
|
|
|
stream->skip_samples = 0;
|
|
|
|
stream->start_skip_samples = 0;
|
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
data->samples_discard += data->skipSamples;
|
2017-02-12 13:17:01 +01:00
|
|
|
}
|
2019-07-21 14:41:17 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
fail:
|
|
|
|
VGM_LOG("FFMPEG: error during force_seek\n");
|
|
|
|
data->bad_init = 1; /* internals were probably free'd */
|
2016-11-30 23:48:49 +01:00
|
|
|
}
|
|
|
|
|
2019-07-21 14:41:17 +02:00
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
static void free_ffmpeg_config(ffmpeg_codec_data* data) {
|
2017-05-19 17:21:22 +02:00
|
|
|
if (data == NULL)
|
|
|
|
return;
|
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
if (data->packet) {
|
|
|
|
av_packet_unref(data->packet);
|
|
|
|
av_free(data->packet);
|
|
|
|
data->packet = NULL;
|
2017-05-19 17:21:22 +02:00
|
|
|
}
|
2019-10-13 18:43:13 +02:00
|
|
|
if (data->frame) {
|
|
|
|
av_frame_unref(data->frame);
|
|
|
|
av_free(data->frame);
|
|
|
|
data->frame = NULL;
|
2017-05-19 17:21:22 +02:00
|
|
|
}
|
|
|
|
if (data->codecCtx) {
|
|
|
|
avcodec_close(data->codecCtx);
|
2019-09-29 18:25:24 +02:00
|
|
|
avcodec_free_context(&data->codecCtx);
|
2017-05-19 17:21:22 +02:00
|
|
|
data->codecCtx = NULL;
|
|
|
|
}
|
|
|
|
if (data->formatCtx) {
|
2019-09-29 18:25:24 +02:00
|
|
|
avformat_close_input(&data->formatCtx);
|
|
|
|
//avformat_free_context(data->formatCtx); /* done in close_input */
|
2017-05-19 17:21:22 +02:00
|
|
|
data->formatCtx = NULL;
|
|
|
|
}
|
|
|
|
if (data->ioCtx) {
|
2019-09-29 18:25:24 +02:00
|
|
|
/* buffer passed in is occasionally freed and replaced.
|
2019-10-13 18:43:13 +02:00
|
|
|
* the replacement must be free'd as well (below) */
|
2017-05-19 17:21:22 +02:00
|
|
|
data->buffer = data->ioCtx->buffer;
|
2019-09-29 18:25:24 +02:00
|
|
|
avio_context_free(&data->ioCtx);
|
|
|
|
//av_free(data->ioCtx); /* done in context_free (same thing) */
|
2017-05-19 17:21:22 +02:00
|
|
|
data->ioCtx = NULL;
|
|
|
|
}
|
|
|
|
if (data->buffer) {
|
|
|
|
av_free(data->buffer);
|
|
|
|
data->buffer = NULL;
|
|
|
|
}
|
2019-09-29 18:25:24 +02:00
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
//todo avformat_find_stream_info may cause some Win Handle leaks? related to certain option
|
2019-07-21 14:41:17 +02:00
|
|
|
}
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
void free_ffmpeg(ffmpeg_codec_data* data) {
|
2019-07-21 14:41:17 +02:00
|
|
|
if (data == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
free_ffmpeg_config(data);
|
|
|
|
|
2019-10-13 18:43:13 +02:00
|
|
|
if (data->header_block) {
|
|
|
|
av_free(data->header_block);
|
|
|
|
data->header_block = NULL;
|
2017-05-19 17:21:22 +02:00
|
|
|
}
|
2019-07-21 14:41:17 +02:00
|
|
|
|
|
|
|
close_streamfile(data->streamfile);
|
2017-05-19 17:21:22 +02:00
|
|
|
free(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-12 13:17:01 +01:00
|
|
|
/**
|
|
|
|
* Sets the number of samples to skip at the beginning of the stream, needed by some "gapless" formats.
|
|
|
|
* (encoder delay, usually added by MDCT-based encoders like AAC/MP3/ATRAC3/XMA/etc to "set up" the decoder).
|
|
|
|
* - should be used at the beginning of the stream
|
|
|
|
* - should check if there are data->skipSamples before using this, to avoid overwritting FFmpeg's value (ex. AAC).
|
|
|
|
*
|
|
|
|
* This could be added per format in FFmpeg directly, but it's here for flexibility and due to bugs
|
|
|
|
* (FFmpeg's stream->(start_)skip_samples causes glitches in XMA).
|
|
|
|
*/
|
2020-07-16 21:43:01 +02:00
|
|
|
void ffmpeg_set_skip_samples(ffmpeg_codec_data* data, int skip_samples) {
|
2017-02-12 13:17:01 +01:00
|
|
|
AVStream *stream = NULL;
|
2019-07-21 14:41:17 +02:00
|
|
|
if (!data || !data->formatCtx)
|
2017-02-12 13:17:01 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* overwrite FFmpeg's skip samples */
|
|
|
|
stream = data->formatCtx->streams[data->streamIndex];
|
|
|
|
stream->start_skip_samples = 0; /* used for the first packet *if* pts=0 */
|
|
|
|
stream->skip_samples = 0; /* skip_samples can be used for any packet */
|
|
|
|
|
|
|
|
/* set skip samples with our internal discard */
|
2019-10-13 18:43:13 +02:00
|
|
|
data->skip_samples_set = 1;
|
|
|
|
data->samples_discard = skip_samples;
|
2017-02-12 13:17:01 +01:00
|
|
|
|
|
|
|
/* expose (info only) */
|
|
|
|
data->skipSamples = skip_samples;
|
|
|
|
}
|
2017-01-13 23:47:52 +01:00
|
|
|
|
2019-03-02 15:57:41 +01:00
|
|
|
/* returns channel layout if set */
|
2020-07-16 21:43:01 +02:00
|
|
|
uint32_t ffmpeg_get_channel_layout(ffmpeg_codec_data* data) {
|
2019-03-02 15:57:41 +01:00
|
|
|
if (!data || !data->codecCtx) return 0;
|
|
|
|
return (uint32_t)data->codecCtx->channel_layout; /* uint64 but there ain't so many speaker mappings */
|
|
|
|
}
|
|
|
|
|
2019-03-30 02:15:22 +01:00
|
|
|
/* yet another hack to fix codecs that encode channels in different order and reorder on decoder
|
|
|
|
* but FFmpeg doesn't do it automatically
|
|
|
|
* (maybe should be done via mixing, but could clash with other stuff?) */
|
2020-07-16 21:43:01 +02:00
|
|
|
void ffmpeg_set_channel_remapping(ffmpeg_codec_data* data, int *channel_remap) {
|
2019-03-30 02:15:22 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if (data->channels > 32)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < data->channels; i++) {
|
|
|
|
data->channel_remap[i] = channel_remap[i];
|
|
|
|
}
|
|
|
|
data->channel_remap_set = 1;
|
|
|
|
}
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
const char* ffmpeg_get_codec_name(ffmpeg_codec_data* data) {
|
2019-10-13 19:54:52 +02:00
|
|
|
if (!data || !data->codec)
|
|
|
|
return NULL;
|
|
|
|
if (data->codec->long_name)
|
|
|
|
return data->codec->long_name;
|
|
|
|
if (data->codec->name)
|
|
|
|
return data->codec->name;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
void ffmpeg_set_force_seek(ffmpeg_codec_data* data) {
|
2019-10-13 20:13:15 +02:00
|
|
|
/* some formats like Smacker are so buggy that any seeking is impossible (even on video players),
|
|
|
|
* or MPC with an incorrectly parsed seek table (using as 0 some non-0 seek offset).
|
|
|
|
* whatever, we'll just kill and reconstruct FFmpeg's config every time */
|
|
|
|
data->force_seek = 1;
|
2020-07-17 22:35:32 +02:00
|
|
|
reset_ffmpeg(data); /* reset state from trying to seek */
|
2019-10-13 20:13:15 +02:00
|
|
|
//stream = data->formatCtx->streams[data->streamIndex];
|
|
|
|
}
|
|
|
|
|
2020-06-04 23:18:28 +02:00
|
|
|
const char* ffmpeg_get_metadata_value(ffmpeg_codec_data* data, const char* key) {
|
|
|
|
AVDictionary* avd;
|
|
|
|
AVDictionaryEntry* avde;
|
|
|
|
|
|
|
|
if (!data || !data->codec)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
avd = data->formatCtx->streams[data->streamIndex]->metadata;
|
|
|
|
if (!avd)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
avde = av_dict_get(avd, key, NULL, AV_DICT_IGNORE_SUFFIX);
|
|
|
|
if (!avde)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return avde->value;
|
|
|
|
}
|
|
|
|
|
2020-07-16 21:43:01 +02:00
|
|
|
STREAMFILE* ffmpeg_get_streamfile(ffmpeg_codec_data* data) {
|
|
|
|
if (!data) return NULL;
|
|
|
|
return data->streamfile;
|
|
|
|
}
|
2016-07-17 08:02:27 +02:00
|
|
|
#endif
|