diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-01 21:13:50 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-01 21:18:03 +0200 |
commit | b9df3f4f6ce06257f439174c37936599008d426a (patch) | |
tree | abd87174f0c38775d0ec27b0c01f309d6f2abc7e /libswresample | |
parent | 53a3748ed23136615e488dc463b91aa57c0e9ec6 (diff) | |
download | ffmpeg-b9df3f4f6ce06257f439174c37936599008d426a.tar.gz |
swr: fix 10l typo mixing in and out config.
Fixes ticket1458
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r-- | libswresample/swresample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c index 89fe0f7f7d..85cf3f60af 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -735,7 +735,7 @@ int swr_drop_output(struct SwrContext *s, int count){ int swr_inject_silence(struct SwrContext *s, int count){ int ret, i; - AudioData silence = s->out; + AudioData silence = s->in; uint8_t *tmp_arg[SWR_CH_MAX]; if(count <= 0) |