2009-04-06 21:14:55 +02:00
|
|
|
// Copyright (c) 2007-2009 Fredrik Mellbin
|
2008-09-19 23:35:46 +02:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
// THE SOFTWARE.
|
|
|
|
|
|
|
|
#ifndef FFAUDIOSOURCE_H
|
|
|
|
#define FFAUDIOSOURCE_H
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include <libavformat/avformat.h>
|
|
|
|
#include <libavcodec/avcodec.h>
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <vector>
|
2009-05-03 21:25:54 +02:00
|
|
|
#include <list>
|
|
|
|
#include <memory>
|
2008-09-19 23:35:46 +02:00
|
|
|
#include "indexing.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "ffms.h"
|
|
|
|
|
2009-04-11 20:45:40 +02:00
|
|
|
#ifdef HAALISOURCE
|
2009-07-14 00:27:40 +02:00
|
|
|
# define WIN32_LEAN_AND_MEAN
|
2009-04-11 20:45:40 +02:00
|
|
|
# define _WIN32_DCOM
|
|
|
|
# include <windows.h>
|
|
|
|
# include <tchar.h>
|
|
|
|
# include <atlbase.h>
|
|
|
|
# include <dshow.h>
|
|
|
|
# include <initguid.h>
|
2009-07-14 00:27:40 +02:00
|
|
|
# include "CoParser.h"
|
2009-04-11 20:45:40 +02:00
|
|
|
# include "guids.h"
|
|
|
|
#endif
|
|
|
|
|
2009-05-03 21:25:54 +02:00
|
|
|
class TAudioBlock {
|
|
|
|
public:
|
|
|
|
int64_t Start;
|
|
|
|
int64_t Samples;
|
|
|
|
uint8_t *Data;
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
TAudioBlock(int64_t Start, int64_t Samples, uint8_t *SrcData, size_t SrcBytes);
|
2009-05-03 21:25:54 +02:00
|
|
|
~TAudioBlock();
|
|
|
|
};
|
|
|
|
|
2009-05-21 12:39:14 +02:00
|
|
|
class TAudioCache : private std::list<TAudioBlock *> {
|
2009-05-03 21:25:54 +02:00
|
|
|
private:
|
|
|
|
int MaxCacheBlocks;
|
|
|
|
int BytesPerSample;
|
|
|
|
static bool AudioBlockComp(TAudioBlock *A, TAudioBlock *B);
|
|
|
|
public:
|
|
|
|
TAudioCache();
|
|
|
|
~TAudioCache();
|
|
|
|
void Initialize(int BytesPerSample, int MaxCacheBlocks);
|
|
|
|
void CacheBlock(int64_t Start, int64_t Samples, uint8_t *SrcData);
|
|
|
|
int64_t FillRequest(int64_t Start, int64_t Samples, uint8_t *Dst);
|
|
|
|
};
|
|
|
|
|
2009-09-26 23:56:15 +02:00
|
|
|
class FFMS_AudioSource {
|
|
|
|
friend class FFSourceResources<FFMS_AudioSource>;
|
2008-09-19 23:35:46 +02:00
|
|
|
protected:
|
2009-05-03 21:25:54 +02:00
|
|
|
TAudioCache AudioCache;
|
|
|
|
int64_t CurrentSample;
|
2009-07-14 00:27:40 +02:00
|
|
|
std::vector<uint8_t> DecodingBuffer;
|
2009-09-26 23:56:15 +02:00
|
|
|
FFMS_Track Frames;
|
2008-09-19 23:35:46 +02:00
|
|
|
AVCodecContext *CodecContext;
|
2009-05-22 23:28:02 +02:00
|
|
|
int AudioTrack;
|
2009-09-26 23:56:15 +02:00
|
|
|
FFMS_AudioProperties AP;
|
|
|
|
|
|
|
|
virtual void Free(bool CloseCodec) = 0;
|
2008-09-19 23:35:46 +02:00
|
|
|
public:
|
2009-09-26 23:56:15 +02:00
|
|
|
FFMS_AudioSource(const char *SourceFile, FFMS_Index *Index, int Track);
|
|
|
|
virtual ~FFMS_AudioSource();
|
|
|
|
FFMS_Track *GetTrack() { return &Frames; }
|
|
|
|
const FFMS_AudioProperties& GetAudioProperties() { return AP; }
|
|
|
|
virtual void GetAudio(void *Buf, int64_t Start, int64_t Count) = 0;
|
|
|
|
void GetAudioCheck(int64_t Start, int64_t Count);
|
2008-09-19 23:35:46 +02:00
|
|
|
};
|
|
|
|
|
2009-09-26 23:56:15 +02:00
|
|
|
class FFLAVFAudio : public FFMS_AudioSource {
|
2008-09-19 23:35:46 +02:00
|
|
|
private:
|
|
|
|
AVFormatContext *FormatContext;
|
2009-09-26 23:56:15 +02:00
|
|
|
FFSourceResources<FFMS_AudioSource> Res;
|
2008-09-19 23:35:46 +02:00
|
|
|
|
2009-09-26 23:56:15 +02:00
|
|
|
void DecodeNextAudioBlock(int64_t *Count);
|
2008-09-27 03:21:57 +02:00
|
|
|
void Free(bool CloseCodec);
|
2008-09-19 23:35:46 +02:00
|
|
|
public:
|
2009-09-26 23:56:15 +02:00
|
|
|
FFLAVFAudio(const char *SourceFile, int Track, FFMS_Index *Index);
|
|
|
|
void GetAudio(void *Buf, int64_t Start, int64_t Count);
|
2008-09-19 23:35:46 +02:00
|
|
|
};
|
|
|
|
|
2009-09-26 23:56:15 +02:00
|
|
|
class FFMatroskaAudio : public FFMS_AudioSource {
|
2008-09-19 23:35:46 +02:00
|
|
|
private:
|
|
|
|
MatroskaFile *MF;
|
|
|
|
MatroskaReaderContext MC;
|
|
|
|
CompressedStream *CS;
|
|
|
|
char ErrorMessage[256];
|
2009-09-26 23:56:15 +02:00
|
|
|
FFSourceResources<FFMS_AudioSource> Res;
|
|
|
|
size_t PacketNumber;
|
2008-09-19 23:35:46 +02:00
|
|
|
|
2009-09-26 23:56:15 +02:00
|
|
|
void DecodeNextAudioBlock(int64_t *Count);
|
2008-09-27 03:21:57 +02:00
|
|
|
void Free(bool CloseCodec);
|
2008-09-19 23:35:46 +02:00
|
|
|
public:
|
2009-09-26 23:56:15 +02:00
|
|
|
FFMatroskaAudio(const char *SourceFile, int Track, FFMS_Index *Index);
|
|
|
|
void GetAudio(void *Buf, int64_t Start, int64_t Count);
|
2008-09-19 23:35:46 +02:00
|
|
|
};
|
|
|
|
|
2009-04-11 20:45:40 +02:00
|
|
|
#ifdef HAALISOURCE
|
|
|
|
|
2009-09-26 23:56:15 +02:00
|
|
|
class FFHaaliAudio : public FFMS_AudioSource {
|
2009-04-11 20:45:40 +02:00
|
|
|
private:
|
|
|
|
CComPtr<IMMContainer> pMMC;
|
2009-07-14 00:27:40 +02:00
|
|
|
std::vector<uint8_t> CodecPrivate;
|
2009-09-26 23:56:15 +02:00
|
|
|
FFSourceResources<FFMS_AudioSource> Res;
|
2009-04-11 20:45:40 +02:00
|
|
|
|
2009-09-26 23:56:15 +02:00
|
|
|
void DecodeNextAudioBlock(int64_t *AFirstStartTime, int64_t *Count);
|
2009-04-11 20:45:40 +02:00
|
|
|
void Free(bool CloseCodec);
|
|
|
|
public:
|
2009-09-26 23:56:15 +02:00
|
|
|
FFHaaliAudio(const char *SourceFile, int Track, FFMS_Index *Index, enum FFMS_Sources SourceMode);
|
|
|
|
void GetAudio(void *Buf, int64_t Start, int64_t Count);
|
2009-04-11 20:45:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HAALISOURCE
|
|
|
|
|
2008-09-19 23:35:46 +02:00
|
|
|
#endif
|