diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2004-05-16 15:13:34 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2004-05-16 15:13:34 +0000 |
commit | 8c31b6d7e8f1b1ba359f97a47b85a024bb5a3601 (patch) | |
tree | 86202c8db32fd8d88441672c9282db0332f24a0f /src/post/audio/upmix.c | |
parent | a3d8d5b4ec8d1b5d01c2079fdfdeb9c6cc41de3c (diff) | |
download | xine-lib-8c31b6d7e8f1b1ba359f97a47b85a024bb5a3601.tar.gz xine-lib-8c31b6d7e8f1b1ba359f97a47b85a024bb5a3601.tar.bz2 |
Changes in white space only.
e.g. changing // to /* */
CVS patchset: 6549
CVS date: 2004/05/16 15:13:34
Diffstat (limited to 'src/post/audio/upmix.c')
-rw-r--r-- | src/post/audio/upmix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/post/audio/upmix.c b/src/post/audio/upmix.c index 168411fd3..ecaa5a273 100644 --- a/src/post/audio/upmix.c +++ b/src/post/audio/upmix.c @@ -23,7 +23,7 @@ * process. It simply paints the screen a solid color and rotates through * colors on each iteration. * - * $Id: upmix.c,v 1.4 2004/05/16 14:44:42 jcdutton Exp $ + * $Id: upmix.c,v 1.5 2004/05/16 15:13:34 jcdutton Exp $ * */ @@ -56,8 +56,8 @@ struct post_class_upmix_s { /* Analog domain biquad section */ typedef struct{ - float a[3]; // Numerator coefficients - float b[3]; // Denominator coefficients + float a[3]; /* Numerator coefficients */ + float b[3]; /* Denominator coefficients */ } biquad_t; /* S-parameters for designing 4th order Butterworth filter */ |