ref: 9052d1ff6bad37f28a58e19763104aa93ad45298
parent: 4dfc6c8fa70d3109591a1f51cf0d8a7849aeb4dd
author: menno <menno>
date: Tue Feb 25 05:51:24 EST 2003
Fix in winamp3 plugin so that it uses faad.h from the include directory
--- a/plugins/winamp3/FAAD.cpp
+++ b/plugins/winamp3/FAAD.cpp
@@ -23,8 +23,8 @@
#include <stdio.h>
#include <process.h>
#include "resource.h"
-#include "FAAD.h"
-//#include <faad.h>
+//#include "FAAD.h"
+#include <faad.h>
#include "..\..\..\faac\include\faac.h"
//#include "..\..\include\faad.h"
/*#include <faad.h>
--- a/plugins/winamp3/FAAD.h
+++ /dev/null
@@ -1,115 +1,0 @@
-/*
-cnv_FAAD - MP4-AAC decoder plugin for Winamp3
-Copyright (C) 2002 Antonio Foranna
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-The author can be contacted at:
-kreel@tiscali.it
-*/
-
-#ifndef _AACPCM_H
-#define _AACPCM_H
-
-#include <studio/services/svc_mediaconverter.h>
-#include <studio/services/servicei.h>
-#include <studio/corecb.h>
-#include <studio/wac.h>
-#include <attribs/cfgitemi.h>
-#include <attribs/attrint.h>
-#include <faad.h>
-extern "C" {
-#include <aacinfo.h> // get_AAC_format()
-}
-#include <mp4.h>
-#include "Defines.h"
-
-
-
-// -----------------------------------------------------------------------------------------------
-
-
-
-class AacPcm : public svc_mediaConverterI
-{
-public:
- AacPcm();
- virtual ~AacPcm();
-
- // service
- static const char *getServiceName() { return FILES_SUPPORT " to PCM converter"; }
-
- virtual int canConvertFrom(svc_fileReader *reader, const char *name, const char *chunktype) {
- if(name && (!STRICMP(Std::extension(name),"aac")|| !STRICMP(Std::extension(name),"mp4"))) return 1; // only accepts *.aac and *.mp4 files
- return 0;
- }
- virtual const char *getConverterTo() { return "PCM"; }
-
- virtual int getInfos(MediaInfo *infos);
-
- virtual int processData(MediaInfo *infos, ChunkList *chunk_list, bool *killswitch);
-
- virtual int getLatency(void) { return 0; }
-
- // callbacks
-
- virtual int corecb_onSeeked(int newpos)
- {
-/* if(!IsSeekable)
- {
- newpos_ms=-1;
- return 0;
- }*/
- newpos_ms=newpos;
- return 0;
- }
-
-// Raw AAC
- BOOL FindBitrate;
-
-private:
-
-//MP4
- MP4FileHandle mp4File;
- MP4SampleId sampleId,
- numSamples;
- int track;
- BYTE type;
-
-// AAC
- FILE *aacFile;
- DWORD Samplerate;
- BYTE Channels;
- DWORD bps;
- DWORD src_size; // aac filesize
- BYTE *buffer;
- long tagsize;
- DWORD *seek_table;
- int seek_table_length;
- bool BlockSeeking;
-
-// GLOBAL
- faacDecHandle hDecoder;
- faadAACInfo file_info;
- faacDecFrameInfo frameInfo;
- DWORD len_ms; // length of file in milliseconds
- DWORD bytes_read; // from file
- DWORD bytes_consumed; // by faadDecDecode
- long bytes_into_buffer;
-// DWORD dst_size;
- long newpos_ms;
- BOOL IsSeekable;
- bool IsAAC;
-};
-#endif
--- a/plugins/winamp3/cnv_FAAD.cpp
+++ b/plugins/winamp3/cnv_FAAD.cpp
@@ -22,7 +22,7 @@
#include <stdlib.h>
#include "..\..\..\faac\include\faac.h"
#include "cnv_FAAD.h"
-#include "FAAD.h"
+#include <faad.h>
#include "CRegistry.h"
#include "Defines.h"
--- a/plugins/winamp3/cnv_FAAD.dsp
+++ b/plugins/winamp3/cnv_FAAD.dsp
@@ -201,10 +201,6 @@
# End Source File
# Begin Source File
-SOURCE=.\FAAD.h
-# End Source File
-# Begin Source File
-
SOURCE=.\resource.h
# End Source File
# End Group