Skip to content

Commit

Permalink
avcodec/wavarc: fix 16bit 0CPY mode
Browse files Browse the repository at this point in the history
  • Loading branch information
richardpl committed Feb 7, 2023
1 parent 93a9ee7 commit c56f5be
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions libavcodec/wavarc.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ typedef struct WavArcContext {
int nb_samples;
int offset;
int align;
int add;

int eof;
int skip;
Expand Down Expand Up @@ -83,19 +82,16 @@ static av_cold int wavarc_init(AVCodecContext *avctx)
case MKTAG('0','C','P','Y'):
s->nb_samples = 640;
s->offset = 0;
s->add = 0;
break;
case MKTAG('1','D','I','F'):
s->nb_samples = 256;
s->offset = 4;
s->add = 0x80;
break;
case MKTAG('2','S','L','P'):
case MKTAG('3','N','L','P'):
case MKTAG('4','A','L','P'):
s->nb_samples = 570;
s->offset = 70;
s->add = 0x80;
break;
default:
return AVERROR_INVALIDDATA;
Expand Down Expand Up @@ -157,12 +153,23 @@ static void do_stereo(WavArcContext *s, int ch, int correlated, int len)
static int decode_0cpy(AVCodecContext *avctx,
WavArcContext *s, GetBitContext *gb)
{
int bits = s->align * 8;
const int bits = s->align * 8;

s->nb_samples = FFMIN(640, get_bits_left(gb) / bits);

for (int n = 0; n < s->nb_samples; n++) {
for (int ch = 0; ch < avctx->ch_layout.nb_channels; ch++)
s->samples[ch][n] = get_bits(gb, bits);
switch (avctx->sample_fmt) {
case AV_SAMPLE_FMT_U8P:
for (int n = 0; n < s->nb_samples; n++) {
for (int ch = 0; ch < avctx->ch_layout.nb_channels; ch++)
s->samples[ch][n] = get_bits(gb, 8) - 0x80;
}
break;
case AV_SAMPLE_FMT_S16P:
for (int n = 0; n < s->nb_samples; n++) {
for (int ch = 0; ch < avctx->ch_layout.nb_channels; ch++)
s->samples[ch][n] = sign_extend(av_bswap16(get_bits(gb, 16)), 16);
}
break;
}
return 0;
}
Expand Down Expand Up @@ -441,7 +448,7 @@ static int wavarc_decode(AVCodecContext *avctx, AVFrame *frame,
const int *src = s->samples[ch] + s->offset;

for (int n = 0; n < frame->nb_samples; n++)
dst[n] = src[n] * (1 << s->shift) + s->add;
dst[n] = src[n] * (1 << s->shift) + 0x80U;
}
break;
case AV_SAMPLE_FMT_S16P:
Expand Down

0 comments on commit c56f5be

Please sign in to comment.