[vlc-commits] aout: an unknown chan mask is not an error

Thomas Guillem git at videolan.org
Mon Jul 10 17:14:14 CEST 2017


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Mon Jul 10 16:46:34 2017 +0200| [6f7ec569a6514e7a948b29b489661f602b083696] | committer: Thomas Guillem

aout: an unknown chan mask is not an error

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6f7ec569a6514e7a948b29b489661f602b083696
---

 src/audio_output/common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/audio_output/common.c b/src/audio_output/common.c
index 66bf5b3849..57d1a7beb3 100644
--- a/src/audio_output/common.c
+++ b/src/audio_output/common.c
@@ -220,7 +220,7 @@ const char * aout_FormatPrintChannels( const audio_sample_format_t * p_format )
         return "3F2M3R/LFE";
     }
 
-    return AOUT_FMT_LINEAR( p_format ) ? "ERROR" : "Unknown-chan-mask";
+    return "Unknown-chan-mask";
 }
 
 #undef aout_FormatPrint



More information about the vlc-commits mailing list