mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
pcm: revert from libavs planar code to durandals.
The libav code does not work on big endian. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
70c0f13a9a
commit
2d232f8b88
@ -358,16 +358,7 @@ static int pcm_decode_frame(AVCodecContext *avctx, void *data,
|
||||
DECODE_PLANAR(16, be16, src, samples, n, 0, 0);
|
||||
break;
|
||||
case AV_CODEC_ID_PCM_S16LE_PLANAR:
|
||||
n /= avctx->channels;
|
||||
for (c = 0; c < avctx->channels; c++) {
|
||||
samples = s->frame.extended_data[c];
|
||||
#if HAVE_BIGENDIAN
|
||||
DECODE(16, le16, src, samples, n, 0, 0)
|
||||
#else
|
||||
memcpy(samples, src, n * 2);
|
||||
#endif
|
||||
src += n * 2;
|
||||
}
|
||||
DECODE_PLANAR(16, le16, src, samples, n, 0, 0);
|
||||
break;
|
||||
case AV_CODEC_ID_PCM_S24LE_PLANAR:
|
||||
DECODE_PLANAR(32, le24, src, samples, n, 8, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user