~ubuntu-branches/ubuntu/raring/flac/raring

« back to all changes in this revision

Viewing changes to src/share/replaygain_synthesis/replaygain_synthesis.c

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2007-12-06 16:57:20 UTC
  • mto: (8.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20071206165720-4przr8grn6ha3e3a
Tags: upstream-1.2.1
ImportĀ upstreamĀ versionĀ 1.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
#include "replaygain_synthesis.h"
45
45
#include "FLAC/assert.h"
46
46
 
47
 
#if defined _MSC_VER
48
 
#define FLAC__INLINE __inline
49
 
#else
50
 
#define FLAC__INLINE
 
47
#ifndef FLaC__INLINE
 
48
#define FLaC__INLINE
51
49
#endif
52
50
 
53
51
/* adjust for compilers that can't understand using LL suffix for int64_t literals */
238
236
 * the following is based on parts of wavegain.c
239
237
 */
240
238
 
241
 
static FLAC__INLINE FLAC__int64 dither_output_(DitherContext *d, FLAC__bool do_dithering, int shapingtype, int i, double Sum, int k)
 
239
static FLaC__INLINE FLAC__int64 dither_output_(DitherContext *d, FLAC__bool do_dithering, int shapingtype, int i, double Sum, int k)
242
240
{
243
241
        union {
244
242
                double d;