Changeset 648:bf9e4790f8d3 in roaraudio


Ignore:
Timestamp:
08/26/08 04:56:07 (16 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

use correct data type and everything is fine :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roarclients/roarfilt.c

    r646 r648  
    66#define BUFSIZE 1024 
    77struct { 
    8  uint16_t a, b, old[ROAR_MAX_CHANNELS]; 
     8 uint16_t a, b; 
     9 int16_t  old[ROAR_MAX_CHANNELS]; 
    910} g_lowpass; 
    1011 
     
    138139   g_lowpass.b = lp; 
    139140   g_lowpass.a = 65536 - lp; 
     141//   printf("lowpass: A=%i, B=%i\n", g_lowpass.a, g_lowpass.b); 
    140142  } else if ( strcmp(k, "--help") == 0 ) { 
    141143   usage(); 
Note: See TracChangeset for help on using the changeset viewer.