mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-28 12:32:17 +02:00
avcodec/dsddec: add slice threading support
This commit is contained in:
parent
98f5cbcb7d
commit
9606e4b6e6
@ -56,23 +56,26 @@ void ff_dsd2pcm_translate(DSDContext* s, size_t samples, int lsbf,
|
|||||||
const unsigned char *src, ptrdiff_t src_stride,
|
const unsigned char *src, ptrdiff_t src_stride,
|
||||||
float *dst, ptrdiff_t dst_stride)
|
float *dst, ptrdiff_t dst_stride)
|
||||||
{
|
{
|
||||||
|
unsigned char buf[FIFOSIZE];
|
||||||
unsigned pos, i;
|
unsigned pos, i;
|
||||||
unsigned char* p;
|
unsigned char* p;
|
||||||
double sum;
|
double sum;
|
||||||
|
|
||||||
pos = s->pos;
|
pos = s->pos;
|
||||||
|
|
||||||
|
memcpy(buf, s->buf, sizeof(buf));
|
||||||
|
|
||||||
while (samples-- > 0) {
|
while (samples-- > 0) {
|
||||||
s->buf[pos] = lsbf ? ff_reverse[*src] : *src;
|
buf[pos] = lsbf ? ff_reverse[*src] : *src;
|
||||||
src += src_stride;
|
src += src_stride;
|
||||||
|
|
||||||
p = s->buf + ((pos - CTABLES) & FIFOMASK);
|
p = buf + ((pos - CTABLES) & FIFOMASK);
|
||||||
*p = ff_reverse[*p];
|
*p = ff_reverse[*p];
|
||||||
|
|
||||||
sum = 0.0;
|
sum = 0.0;
|
||||||
for (i = 0; i < CTABLES; i++) {
|
for (i = 0; i < CTABLES; i++) {
|
||||||
unsigned char a = s->buf[(pos - i) & FIFOMASK];
|
unsigned char a = buf[(pos - i) & FIFOMASK];
|
||||||
unsigned char b = s->buf[(pos - (CTABLES*2 - 1) + i) & FIFOMASK];
|
unsigned char b = buf[(pos - (CTABLES*2 - 1) + i) & FIFOMASK];
|
||||||
sum += ctables[i][a] + ctables[i][b];
|
sum += ctables[i][a] + ctables[i][b];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,4 +86,5 @@ void ff_dsd2pcm_translate(DSDContext* s, size_t samples, int lsbf,
|
|||||||
}
|
}
|
||||||
|
|
||||||
s->pos = pos;
|
s->pos = pos;
|
||||||
|
memcpy(s->buf, buf, sizeof(buf));
|
||||||
}
|
}
|
||||||
|
@ -61,17 +61,20 @@ static av_cold int decode_init(AVCodecContext *avctx)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int decode_frame(AVCodecContext *avctx, void *data,
|
typedef struct ThreadData {
|
||||||
int *got_frame_ptr, AVPacket *avpkt)
|
AVFrame *frame;
|
||||||
{
|
AVPacket *avpkt;
|
||||||
DSDContext * s = avctx->priv_data;
|
} ThreadData;
|
||||||
AVFrame *frame = data;
|
|
||||||
int ret, i;
|
|
||||||
int lsbf = avctx->codec_id == AV_CODEC_ID_DSD_LSBF || avctx->codec_id == AV_CODEC_ID_DSD_LSBF_PLANAR;
|
|
||||||
int src_next;
|
|
||||||
int src_stride;
|
|
||||||
|
|
||||||
frame->nb_samples = avpkt->size / avctx->channels;
|
static int dsd_channel(AVCodecContext *avctx, void *tdata, int j, int threadnr)
|
||||||
|
{
|
||||||
|
int lsbf = avctx->codec_id == AV_CODEC_ID_DSD_LSBF || avctx->codec_id == AV_CODEC_ID_DSD_LSBF_PLANAR;
|
||||||
|
DSDContext *s = avctx->priv_data;
|
||||||
|
ThreadData *td = tdata;
|
||||||
|
AVFrame *frame = td->frame;
|
||||||
|
AVPacket *avpkt = td->avpkt;
|
||||||
|
int src_next, src_stride;
|
||||||
|
float *dst = ((float **)frame->extended_data)[j];
|
||||||
|
|
||||||
if (avctx->codec_id == AV_CODEC_ID_DSD_LSBF_PLANAR || avctx->codec_id == AV_CODEC_ID_DSD_MSBF_PLANAR) {
|
if (avctx->codec_id == AV_CODEC_ID_DSD_LSBF_PLANAR || avctx->codec_id == AV_CODEC_ID_DSD_MSBF_PLANAR) {
|
||||||
src_next = frame->nb_samples;
|
src_next = frame->nb_samples;
|
||||||
@ -81,15 +84,28 @@ static int decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
src_stride = avctx->channels;
|
src_stride = avctx->channels;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ff_dsd2pcm_translate(&s[j], frame->nb_samples, lsbf,
|
||||||
|
avpkt->data + j * src_next, src_stride,
|
||||||
|
dst, 1);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int decode_frame(AVCodecContext *avctx, void *data,
|
||||||
|
int *got_frame_ptr, AVPacket *avpkt)
|
||||||
|
{
|
||||||
|
ThreadData td;
|
||||||
|
AVFrame *frame = data;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
frame->nb_samples = avpkt->size / avctx->channels;
|
||||||
|
|
||||||
if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
|
if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
for (i = 0; i < avctx->channels; i++) {
|
td.frame = frame;
|
||||||
float * dst = ((float **)frame->extended_data)[i];
|
td.avpkt = avpkt;
|
||||||
ff_dsd2pcm_translate(&s[i], frame->nb_samples, lsbf,
|
avctx->execute2(avctx, dsd_channel, &td, NULL, avctx->channels);
|
||||||
avpkt->data + i * src_next, src_stride,
|
|
||||||
dst, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
*got_frame_ptr = 1;
|
*got_frame_ptr = 1;
|
||||||
return frame->nb_samples * avctx->channels;
|
return frame->nb_samples * avctx->channels;
|
||||||
@ -103,6 +119,7 @@ AVCodec ff_##name_##_decoder = { \
|
|||||||
.id = AV_CODEC_ID_##id_, \
|
.id = AV_CODEC_ID_##id_, \
|
||||||
.init = decode_init, \
|
.init = decode_init, \
|
||||||
.decode = decode_frame, \
|
.decode = decode_frame, \
|
||||||
|
.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_SLICE_THREADS, \
|
||||||
.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_FLTP, \
|
.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_FLTP, \
|
||||||
AV_SAMPLE_FMT_NONE }, \
|
AV_SAMPLE_FMT_NONE }, \
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user