summaryrefslogtreecommitdiff
path: root/audio/mpg123/patches/patch-ar
blob: 4517d3bcae97b62c0cc1720509355f8bf7e77eb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
$NetBSD: patch-ar,v 1.2 2005/01/12 11:52:38 drochner Exp $

--- layer2.c.orig	1999-02-10 13:13:06.000000000 +0100
+++ layer2.c
@@ -240,7 +240,7 @@ static void II_select_table(struct frame
        { alloc_0, alloc_1, alloc_2, alloc_3 , alloc_4 };
   static int sblims[5] = { 27 , 30 , 8, 12 , 30 };
 
-  if(fr->lsf)
+  if(fr->sampling_frequency >= 3) /* Or equivalent: (fr->lsf == 1) */
     table = 4;
   else
     table = translate[fr->sampling_frequency][2-fr->stereo][fr->bitrate_index];
@@ -265,6 +265,12 @@ int do_layer2(struct frame *fr,int outmo
   fr->jsbound = (fr->mode == MPG_MD_JOINT_STEREO) ?
      (fr->mode_ext<<2)+4 : fr->II_sblimit;
 
+  if (fr->jsbound > fr->II_sblimit)
+  {
+    fprintf(stderr, "Truncating stereo boundary to sideband limit.\n");
+    fr->jsbound=fr->II_sblimit;
+  }
+
   if(stereo == 1 || single == 3)
     single = 0;