Browse Source

swr: fix silence buffer for planar U8

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 13 years ago
parent
commit
bd1d975cd0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libswresample/audioconvert.c

+ 1
- 1
libswresample/audioconvert.c View File

@@ -142,7 +142,7 @@ AudioConvert *swri_audio_convert_alloc(enum AVSampleFormat out_fmt,
ctx->channels = channels;
ctx->conv_f = f;
ctx->ch_map = ch_map;
if (in_fmt == AV_SAMPLE_FMT_U8)
if (in_fmt == AV_SAMPLE_FMT_U8 || in_fmt == AV_SAMPLE_FMT_U8P)
memset(ctx->silence, 0x80, sizeof(ctx->silence));

if(out_fmt == in_fmt && !ch_map) {


Loading…
Cancel
Save