2009-04-06 21:14:55 +02:00
|
|
|
// Copyright (c) 2007-2009 Fredrik Mellbin
|
2008-09-01 23:16:13 +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 UTILS_H
|
|
|
|
#define UTILS_H
|
|
|
|
|
2009-05-20 20:57:03 +02:00
|
|
|
#include "ffms.h"
|
|
|
|
#include <vector>
|
|
|
|
|
2008-09-01 23:16:13 +02:00
|
|
|
extern "C" {
|
2008-12-31 00:57:22 +01:00
|
|
|
#include <libavformat/avformat.h>
|
2008-09-01 23:16:13 +02:00
|
|
|
#include <libavcodec/avcodec.h>
|
|
|
|
#include <libswscale/swscale.h>
|
|
|
|
#include <libpostproc/postprocess.h>
|
2008-12-31 00:57:22 +01:00
|
|
|
#include <libavutil/sha1.h>
|
2008-09-01 23:16:13 +02:00
|
|
|
#include "MatroskaParser.h"
|
|
|
|
#include "stdiostream.h"
|
2008-12-31 00:57:22 +01:00
|
|
|
}
|
2008-09-01 23:16:13 +02:00
|
|
|
|
2009-04-25 10:55:14 +02:00
|
|
|
#ifdef HAALISOURCE
|
|
|
|
# define _WIN32_DCOM
|
|
|
|
# include <windows.h>
|
|
|
|
# include <tchar.h>
|
|
|
|
# include <atlbase.h>
|
|
|
|
# include <dshow.h>
|
|
|
|
# include "CoParser.h"
|
|
|
|
# include <initguid.h>
|
|
|
|
# include "guids.h"
|
|
|
|
#endif
|
|
|
|
|
2009-05-20 20:57:03 +02:00
|
|
|
struct TFrameInfo {
|
|
|
|
FFMS_FRAMEINFO_COMMON
|
|
|
|
int64_t SampleStart;
|
|
|
|
int64_t FilePos;
|
|
|
|
unsigned int FrameSize;
|
|
|
|
#ifdef FFMS_EXPORTS
|
|
|
|
TFrameInfo(int64_t DTS, bool KeyFrame);
|
|
|
|
TFrameInfo(int64_t DTS, int64_t FilePos, unsigned int FrameSize, bool KeyFrame);
|
|
|
|
TFrameInfo(int64_t DTS, int64_t SampleStart, bool KeyFrame);
|
|
|
|
TFrameInfo(int64_t DTS, int64_t SampleStart, int64_t FilePos, unsigned int FrameSize, bool KeyFrame);
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FFTrack : public std::vector<TFrameInfo> {
|
|
|
|
public:
|
|
|
|
FFMS_TrackType TT;
|
|
|
|
TTrackTimeBase TB;
|
|
|
|
|
|
|
|
int FindClosestVideoKeyFrame(int Frame);
|
|
|
|
int FindClosestAudioKeyFrame(int64_t Sample);
|
|
|
|
int FrameFromDTS(int64_t DTS);
|
|
|
|
int ClosestFrameFromDTS(int64_t DTS);
|
|
|
|
int WriteTimecodes(const char *TimecodeFile, char *ErrorMsg, unsigned MsgSize);
|
|
|
|
|
|
|
|
FFTrack();
|
|
|
|
FFTrack(int64_t Num, int64_t Den, FFMS_TrackType TT);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FFIndex : public std::vector<FFTrack> {
|
|
|
|
public:
|
|
|
|
int Decoder;
|
|
|
|
int WriteIndex(const char *IndexFile, char *ErrorMsg, unsigned MsgSize);
|
|
|
|
int ReadIndex(const char *IndexFile, char *ErrorMsg, unsigned MsgSize);
|
|
|
|
};
|
|
|
|
|
2008-09-01 23:16:13 +02:00
|
|
|
struct MatroskaReaderContext {
|
|
|
|
public:
|
|
|
|
StdIoStream ST;
|
|
|
|
uint8_t *Buffer;
|
|
|
|
unsigned int BufferSize;
|
|
|
|
|
|
|
|
MatroskaReaderContext() {
|
|
|
|
InitStdIoStream(&ST);
|
|
|
|
Buffer = NULL;
|
|
|
|
BufferSize = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
~MatroskaReaderContext() {
|
|
|
|
free(Buffer);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
int GetCPUFlags();
|
2009-05-20 20:57:03 +02:00
|
|
|
FFMS_TrackType HaaliTrackTypeToFFTrackType(int TT);
|
2008-09-01 23:16:13 +02:00
|
|
|
int ReadFrame(uint64_t FilePos, unsigned int &FrameSize, CompressedStream *CS, MatroskaReaderContext &Context, char *ErrorMsg, unsigned MsgSize);
|
|
|
|
bool AudioFMTIsFloat(SampleFormat FMT);
|
2009-05-03 21:25:54 +02:00
|
|
|
void InitNullPacket(AVPacket *pkt);
|
2009-05-16 01:11:18 +02:00
|
|
|
void FillAP(TAudioProperties &AP, AVCodecContext *CTX, FFTrack &Frames);
|
2009-04-25 10:55:14 +02:00
|
|
|
#ifdef HAALISOURCE
|
|
|
|
unsigned vtSize(VARIANT &vt);
|
|
|
|
void vtCopy(VARIANT& vt,void *dest);
|
|
|
|
#endif
|
2008-12-31 00:57:22 +01:00
|
|
|
CodecID MatroskaToFFCodecID(char *Codec, void *CodecPrivate);
|
2008-09-01 23:16:13 +02:00
|
|
|
|
|
|
|
#endif
|