123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
-
- #ifndef _STATNAME_H
- #define _STATNAME_H
- #define STAT_PREFIX raac
- #define STATCC1(x,y,z) STATCC2(x,y,z)
- #define STATCC2(x,y,z) x##y##z
- #ifdef STAT_PREFIX
- #define STATNAME(func) STATCC1(STAT_PREFIX, _, func)
- #else
- #define STATNAME(func) func
- #endif
- #define AllocateBuffers STATNAME(AllocateBuffers)
- #define FreeBuffers STATNAME(FreeBuffers)
- #define ClearBuffer STATNAME(ClearBuffer)
- #define SetRawBlockParams STATNAME(SetRawBlockParams)
- #define PrepareRawBlock STATNAME(PrepareRawBlock)
- #define FlushCodec STATNAME(FlushCodec)
- #define UnpackADTSHeader STATNAME(UnpackADTSHeader)
- #define GetADTSChannelMapping STATNAME(GetADTSChannelMapping)
- #define UnpackADIFHeader STATNAME(UnpackADIFHeader)
- #define DecodeNextElement STATNAME(DecodeNextElement)
- #define DecodeNoiselessData STATNAME(DecodeNoiselessData)
- #define Dequantize STATNAME(Dequantize)
- #define StereoProcess STATNAME(StereoProcess)
- #define DeinterleaveShortBlocks STATNAME(DeinterleaveShortBlocks)
- #define PNS STATNAME(PNS)
- #define TNSFilter STATNAME(TNSFilter)
- #define IMDCT STATNAME(IMDCT)
- #define InitSBR STATNAME(InitSBR)
- #define DecodeSBRBitstream STATNAME(DecodeSBRBitstream)
- #define DecodeSBRData STATNAME(DecodeSBRData)
- #define FreeSBR STATNAME(FreeSBR)
- #define FlushCodecSBR STATNAME(FlushCodecSBR)
- #define sampRateTab STATNAME(sampRateTab)
- #define predSFBMax STATNAME(predSFBMax)
- #define channelMapTab STATNAME(channelMapTab)
- #define elementNumChans STATNAME(elementNumChans)
- #define sfBandTotalShort STATNAME(sfBandTotalShort)
- #define sfBandTotalLong STATNAME(sfBandTotalLong)
- #define sfBandTabShortOffset STATNAME(sfBandTabShortOffset)
- #define sfBandTabShort STATNAME(sfBandTabShort)
- #define sfBandTabLongOffset STATNAME(sfBandTabLongOffset)
- #define sfBandTabLong STATNAME(sfBandTabLong)
- #define tnsMaxBandsShortOffset STATNAME(tnsMaxBandsShortOffset)
- #define tnsMaxBandsShort STATNAME(tnsMaxBandsShort)
- #define tnsMaxOrderShort STATNAME(tnsMaxOrderShort)
- #define tnsMaxBandsLongOffset STATNAME(tnsMaxBandsLongOffset)
- #define tnsMaxBandsLong STATNAME(tnsMaxBandsLong)
- #define tnsMaxOrderLong STATNAME(tnsMaxOrderLong)
- #endif
|