mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:21:11 +01:00
swr: fix buf_set() so it works with input == output
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
bdbfd4569d
commit
5027e3daf7
1 changed files with 1 additions and 1 deletions
|
|
@ -394,7 +394,7 @@ static void buf_set(AudioData *out, AudioData *in, int count){
|
|||
for(ch=0; ch<out->ch_count; ch++)
|
||||
out->ch[ch]= in->ch[ch] + count*out->bps;
|
||||
}else{
|
||||
for(ch=0; ch<out->ch_count; ch++)
|
||||
for(ch=out->ch_count-1; ch>=0; ch--)
|
||||
out->ch[ch]= in->ch[0] + (ch + count*out->ch_count) * out->bps;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue