changeset 3991:3cc570fdebbf libavformat

simplifying code as per Michael's suggestion
author romansh
date Tue, 07 Oct 2008 16:14:33 +0000
parents 9709530b68b5
children 36f92f77c85e
files dv.c
diffstat 1 files changed, 3 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/dv.c	Tue Oct 07 15:49:45 2008 +0000
+++ b/dv.c	Tue Oct 07 16:14:33 2008 +0000
@@ -201,10 +201,9 @@
     quant = as_pack[4] & 0x07; /* 0 - 16bit linear, 1 - 12bit nonlinear */
 
     /* note: ach counts PAIRS of channels (i.e. stereo channels) */
-    if (stype == 3) {
-        ach = 4;
-    } else
-    ach = (stype == 2 || (quant && (freq == 2))) ? 2 : 1;
+    ach = (int[4]){  1,  0,  2,  4}[stype];
+    if (ach == 1 && quant && freq == 2)
+        ach = 2;
 
     /* Dynamic handling of the audio streams in DV */
     for (i=0; i<ach; i++) {