[FFmpeg-cvslog] swr: clean layouts before checking sanity

Michael Niedermayer git at videolan.org
Tue Aug 20 18:50:50 CEST 2013


ffmpeg | branch: release/1.2 | Michael Niedermayer <michaelni at gmx.at> | Tue Aug 20 16:49:31 2013 +0200| [a94404457b0b22e0473c8a4e00d107af92f0e12e] | committer: Carl Eugen Hoyos

swr: clean layouts before checking sanity

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 6dfffe92004dfd8c79d18791f28a2b1c7e387845)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a94404457b0b22e0473c8a4e00d107af92f0e12e
---

 libswresample/rematrix.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c
index 51658ce..cfe0a1b 100644
--- a/libswresample/rematrix.c
+++ b/libswresample/rematrix.c
@@ -118,13 +118,14 @@ av_cold static int auto_matrix(SwrContext *s)
     const int matrix_encoding = s->matrix_encoding;
 
     in_ch_layout = clean_layout(s, s->in_ch_layout);
+    out_ch_layout = clean_layout(s, s->out_ch_layout);
+
     if(!sane_layout(in_ch_layout)){
         av_get_channel_layout_string(buf, sizeof(buf), -1, s->in_ch_layout);
         av_log(s, AV_LOG_ERROR, "Input channel layout '%s' is not supported\n", buf);
         return AVERROR(EINVAL);
     }
 
-    out_ch_layout = clean_layout(s, s->out_ch_layout);
     if(!sane_layout(out_ch_layout)){
         av_get_channel_layout_string(buf, sizeof(buf), -1, s->out_ch_layout);
         av_log(s, AV_LOG_ERROR, "Output channel layout '%s' is not supported\n", buf);



More information about the ffmpeg-cvslog mailing list