Mercurial > audlegacy
changeset 772:f9bb836f4545 trunk
[svn] adjust our tolerance a bit
author | nenolod |
---|---|
date | Wed, 01 Mar 2006 10:39:35 -0800 |
parents | 0f0659a2d5fb |
children | f3d15ea6e56b |
files | Plugins/Input/mpg123/common.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/Plugins/Input/mpg123/common.c Wed Mar 01 10:33:12 2006 -0800 +++ b/Plugins/Input/mpg123/common.c Wed Mar 01 10:39:35 2006 -0800 @@ -403,7 +403,7 @@ if (!fr->bitrate_index) return (0); - if (fr->sampling_frequency >= 9 || fr->sampling_frequency <= 0) + if (fr->sampling_frequency > 9 || fr->sampling_frequency < 0) { printf("rejecting mp3 due to sampling_frequency == %d\n", fr->sampling_frequency);