Changeset 70

Show
Ignore:
Timestamp:
06/10/09 17:35:27 (15 months ago)
Author:
gbooker
Message:

Removed extraneous ACShepA52Decoder:: and ACShepA52Codec:: from header files

Location:
trunk/A52
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/A52/ACShepA52Codec.h

    r65 r70  
    3737        virtual void            GetProperty(AudioCodecPropertyID inPropertyID, UInt32& ioPropertyDataSize, void* outPropertyData); 
    3838        virtual void            GetPropertyInfo(AudioCodecPropertyID inPropertyID, UInt32& outPropertyDataSize, Boolean& outWritable); 
    39         virtual void            ACShepA52Codec::ReallocateInputBuffer(UInt32 inInputBufferByteSize); 
     39        virtual void            ReallocateInputBuffer(UInt32 inInputBufferByteSize); 
    4040 
    4141 
  • trunk/A52/ACShepA52Decoder.h

    r67 r70  
    5757//      Implementation 
    5858private: 
    59         void    ACShepA52Decoder::UpgradeOldPrefs(); 
     59        void    UpgradeOldPrefs(); 
    6060        void    DetermineStreamParameters(); 
    6161        UInt32  SyncA52Stream(UInt32 &bytes_to_read, Byte *input_data, int &a52_flags, int &a52_samplerate, int &a52_bitrate, bool shouldResync); 
    6262        UInt32  AppendPacket(const void* inInputData, UInt32 inInputDataSize, UInt32 bufferStartOffset, UInt32 offset, UInt32& packetSize);              
    63         void ACShepA52Decoder::getChannelMap(int a52_flags, int chanMap[6]); 
     63        void getChannelMap(int a52_flags, int chanMap[6]); 
    6464        template <class outPtr, class inPtr> 
    65         UInt32 ACShepA52Decoder::InterleaveSamples(void *output_data_untyped, UInt32 output_data_offset, sample_t *output_samples, int a52_flags); 
     65        UInt32 InterleaveSamples(void *output_data_untyped, UInt32 output_data_offset, sample_t *output_samples, int a52_flags); 
    6666 
    6767        a52_state_t *decoder_state;