pkgsrc/audio/mpg123/patches/patch-ar
drochner acab60afcc another header valdation (CAN-2004-0991)
ride on recent PKGREVISION bump
2005-01-12 11:52:38 +00:00

26 lines
860 B
Text

$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;