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.
|
|
|
|
|
2009-04-24 21:56:19 +02:00
|
|
|
extern "C" {
|
|
|
|
#include <libavcodec/avcodec.h>
|
|
|
|
}
|
|
|
|
|
2008-09-01 23:16:13 +02:00
|
|
|
#include "ffms.h"
|
|
|
|
#include "ffvideosource.h"
|
2008-09-19 23:35:46 +02:00
|
|
|
#include "ffaudiosource.h"
|
2008-09-01 23:16:13 +02:00
|
|
|
#include "indexing.h"
|
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#ifdef __UNIX__
|
|
|
|
#define _snprintf snprintf
|
|
|
|
#endif
|
|
|
|
|
2009-05-22 23:28:02 +02:00
|
|
|
static int InitCount = 0;
|
|
|
|
|
|
|
|
FFMS_API(int) FFMS_Init() {
|
|
|
|
if (!InitCount++) {
|
2008-09-02 01:18:50 +02:00
|
|
|
av_register_all();
|
2009-05-12 22:50:40 +02:00
|
|
|
av_log_set_level(AV_LOG_QUIET);
|
2009-05-22 23:28:02 +02:00
|
|
|
#ifdef HAALISOURCE
|
|
|
|
if (::CoInitializeEx(NULL, COINIT_MULTITHREADED) != S_OK)
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FFMS_API(void) FFMS_DeInit() {
|
|
|
|
if (!--InitCount) {
|
|
|
|
#ifdef HAALISOURCE
|
|
|
|
::CoUninitialize();
|
|
|
|
#endif
|
2009-05-12 22:50:40 +02:00
|
|
|
}
|
2008-09-02 01:18:50 +02:00
|
|
|
}
|
2009-01-03 16:17:53 +01:00
|
|
|
|
2009-05-12 22:50:40 +02:00
|
|
|
FFMS_API(int) FFMS_GetLogLevel() {
|
|
|
|
return av_log_get_level();
|
|
|
|
}
|
|
|
|
|
|
|
|
FFMS_API(void) FFMS_SetLogLevel(int Level) {
|
2009-01-03 16:17:53 +01:00
|
|
|
av_log_set_level(AV_LOG_QUIET);
|
|
|
|
}
|
2008-09-02 01:18:50 +02:00
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(FFVideo *) FFMS_CreateVideoSource(const char *SourceFile, int Track, FFIndex *Index, const char *PP, int Threads, int SeekMode, char *ErrorMsg, unsigned MsgSize) {
|
2008-09-23 21:25:34 +02:00
|
|
|
try {
|
2009-05-16 01:11:18 +02:00
|
|
|
switch (Index->Decoder) {
|
2009-05-20 20:57:03 +02:00
|
|
|
case 0: return new FFLAVFVideo(SourceFile, Track, Index, PP, Threads, SeekMode, ErrorMsg, MsgSize);
|
|
|
|
case 1: return new FFMatroskaVideo(SourceFile, Track, Index, PP, Threads, ErrorMsg, MsgSize);
|
2009-04-11 20:45:40 +02:00
|
|
|
#ifdef HAALISOURCE
|
2009-05-20 20:57:03 +02:00
|
|
|
case 2: return new FFHaaliVideo(SourceFile, Track, Index, PP, Threads, 0, ErrorMsg, MsgSize);
|
|
|
|
case 3: return new FFHaaliVideo(SourceFile, Track, Index, PP, Threads, 1, ErrorMsg, MsgSize);
|
2008-12-31 01:06:57 +01:00
|
|
|
#endif
|
2008-09-23 21:51:19 +02:00
|
|
|
default:
|
|
|
|
_snprintf(ErrorMsg, MsgSize, "Unsupported format");
|
|
|
|
return NULL;
|
2008-09-23 21:25:34 +02:00
|
|
|
}
|
|
|
|
} catch (...) {
|
|
|
|
return NULL;
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(FFAudio *) FFMS_CreateAudioSource(const char *SourceFile, int Track, FFIndex *Index, char *ErrorMsg, unsigned MsgSize) {
|
2008-09-23 21:25:34 +02:00
|
|
|
try {
|
2009-05-16 01:11:18 +02:00
|
|
|
switch (Index->Decoder) {
|
2009-05-20 20:57:03 +02:00
|
|
|
case 0: return new FFLAVFAudio(SourceFile, Track, Index, ErrorMsg, MsgSize);
|
|
|
|
case 1: return new FFMatroskaAudio(SourceFile, Track, Index, ErrorMsg, MsgSize);
|
2009-05-23 00:12:31 +02:00
|
|
|
#ifdef HAALISOURCE
|
2009-05-22 23:28:02 +02:00
|
|
|
case 2: return new FFHaaliAudio(SourceFile, Track, Index, 0, ErrorMsg, MsgSize);
|
|
|
|
case 3: return new FFHaaliAudio(SourceFile, Track, Index, 1, ErrorMsg, MsgSize);
|
2009-05-23 00:12:31 +02:00
|
|
|
#endif
|
2008-09-23 21:51:19 +02:00
|
|
|
default:
|
|
|
|
_snprintf(ErrorMsg, MsgSize, "Unsupported format");
|
|
|
|
return NULL;
|
2008-09-23 21:25:34 +02:00
|
|
|
}
|
|
|
|
} catch (...) {
|
|
|
|
return NULL;
|
2008-09-19 23:35:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(void) FFMS_DestroyVideoSource(FFVideo *V) {
|
|
|
|
delete V;
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(void) FFMS_DestroyAudioSource(FFAudio *A) {
|
|
|
|
delete A;
|
2008-09-19 23:35:46 +02:00
|
|
|
}
|
|
|
|
|
2009-05-18 00:02:43 +02:00
|
|
|
FFMS_API(const TVideoProperties *) FFMS_GetVideoProperties(FFVideo *V) {
|
2009-05-16 01:11:18 +02:00
|
|
|
return &V->GetTVideoProperties();
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-18 00:02:43 +02:00
|
|
|
FFMS_API(const TAudioProperties *) FFMS_GetAudioProperties(FFAudio *A) {
|
2009-05-16 01:11:18 +02:00
|
|
|
return &A->GetTAudioProperties();
|
2008-09-19 23:35:46 +02:00
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(const TAVFrameLite *) FFMS_GetFrame(FFVideo *V, int n, char *ErrorMsg, unsigned MsgSize) {
|
|
|
|
return (TAVFrameLite *)V->GetFrame(n, ErrorMsg, MsgSize);
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(const TAVFrameLite *) FFMS_GetFrameByTime(FFVideo *V, double Time, char *ErrorMsg, unsigned MsgSize) {
|
|
|
|
return (TAVFrameLite *)V->GetFrameByTime(Time, ErrorMsg, MsgSize);
|
2008-09-27 03:21:57 +02:00
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(int) FFMS_GetAudio(FFAudio *A, void *Buf, int64_t Start, int64_t Count, char *ErrorMsg, unsigned MsgSize) {
|
|
|
|
return A->GetAudio(Buf, Start, Count, ErrorMsg, MsgSize);
|
2008-09-19 23:35:46 +02:00
|
|
|
}
|
|
|
|
|
2009-05-23 16:18:51 +02:00
|
|
|
FFMS_API(int) FFMS_SetOutputFormat(FFVideo *V, int64_t TargetFormats, int Width, int Height, char *ErrorMsg, unsigned MsgSize) {
|
|
|
|
return V->SetOutputFormat(TargetFormats, Width, Height, ErrorMsg, MsgSize);
|
2008-09-09 22:49:59 +02:00
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(void) FFMS_ResetOutputFormat(FFVideo *V) {
|
|
|
|
V->ResetOutputFormat();
|
2008-09-09 22:49:59 +02:00
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(void) FFMS_DestroyFFIndex(FFIndex *Index) {
|
|
|
|
delete Index;
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(int) FFMS_GetFirstTrackOfType(FFIndex *Index, int TrackType, char *ErrorMsg, unsigned MsgSize) {
|
2009-05-20 20:57:03 +02:00
|
|
|
for (int i = 0; i < static_cast<int>(Index->size()); i++)
|
|
|
|
if ((*Index)[i].TT == TrackType)
|
|
|
|
return i;
|
|
|
|
_snprintf(ErrorMsg, MsgSize, "No suitable, indexed track found");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
FFMS_API(int) FFMS_GetFirstIndexedTrackOfType(FFIndex *Index, int TrackType, char *ErrorMsg, unsigned MsgSize) {
|
2009-05-16 01:11:18 +02:00
|
|
|
for (int i = 0; i < static_cast<int>(Index->size()); i++)
|
2009-05-18 00:02:43 +02:00
|
|
|
if ((*Index)[i].TT == TrackType && (*Index)[i].size() > 0)
|
2008-09-27 21:05:10 +02:00
|
|
|
return i;
|
2009-05-18 00:02:43 +02:00
|
|
|
_snprintf(ErrorMsg, MsgSize, "No suitable, indexed track found");
|
2008-09-27 21:05:10 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(int) FFMS_GetNumTracks(FFIndex *Index) {
|
|
|
|
return Index->size();
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-23 22:04:38 +02:00
|
|
|
FFMS_API(int) FFMS_GetNumTracksI(FFIndexer *Indexer) {
|
2009-05-20 20:57:03 +02:00
|
|
|
return Indexer->GetNumberOfTracks();
|
|
|
|
}
|
|
|
|
|
|
|
|
FFMS_API(FFMS_TrackType) FFMS_GetTrackType(FFTrack *T) {
|
2009-05-16 01:11:18 +02:00
|
|
|
return T->TT;
|
2008-09-23 23:56:30 +02:00
|
|
|
}
|
|
|
|
|
2009-05-20 20:57:03 +02:00
|
|
|
FFMS_API(FFMS_TrackType) FFMS_GetTrackTypeI(FFIndexer *Indexer, int Track) {
|
|
|
|
return Indexer->GetTrackType(Track);
|
|
|
|
}
|
|
|
|
|
2009-05-23 22:04:38 +02:00
|
|
|
FFMS_API(const char *) FFMS_GetCodecNameI(FFIndexer *Indexer, int Track) {
|
|
|
|
return Indexer->GetTrackCodec(Track);
|
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(int) FFMS_GetNumFrames(FFTrack *T) {
|
|
|
|
return T->size();
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-23 16:18:51 +02:00
|
|
|
FFMS_API(const FFFrameInfo *) FFMS_GetFrameInfo(FFTrack *T, int Frame) {
|
|
|
|
return reinterpret_cast<FFFrameInfo *>(&(*T)[Frame]);
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-23 16:18:51 +02:00
|
|
|
FFMS_API(FFTrack *) FFMS_GetTrackFromIndex(FFIndex *Index, int Track) {
|
|
|
|
return &(*Index)[Track];
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-18 00:02:43 +02:00
|
|
|
FFMS_API(FFTrack *) FFMS_GetTrackFromVideo(FFVideo *V) {
|
2009-05-16 01:11:18 +02:00
|
|
|
return V->GetFFTrack();
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-18 00:02:43 +02:00
|
|
|
FFMS_API(FFTrack *) FFMS_GetTrackFromAudio(FFAudio *A) {
|
|
|
|
return A->GetFFTrack();
|
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(const TTrackTimeBase *) FFMS_GetTimeBase(FFTrack *T) {
|
|
|
|
return &T->TB;
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(int) FFMS_WriteTimecodes(FFTrack *T, const char *TimecodeFile, char *ErrorMsg, unsigned MsgSize) {
|
|
|
|
return T->WriteTimecodes(TimecodeFile, ErrorMsg, MsgSize);
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-22 23:28:02 +02:00
|
|
|
FFMS_API(FFIndex *) FFMS_MakeIndex(const char *SourceFile, int IndexMask, int DumpMask, TAudioNameCallback ANC, void *ANCPrivate, bool IgnoreDecodeErrors, TIndexCallback IC, void *ICPrivate, char *ErrorMsg, unsigned MsgSize) {
|
|
|
|
FFIndexer *Indexer = FFMS_CreateIndexer(SourceFile, ErrorMsg, MsgSize);
|
|
|
|
if (!Indexer)
|
|
|
|
return NULL;
|
|
|
|
return FFMS_DoIndexing(Indexer, IndexMask, DumpMask, ANC, ANCPrivate, IgnoreDecodeErrors, IC, ICPrivate, ErrorMsg, MsgSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
FFMS_API(int) FFMS_DefaultAudioFilename(const char *SourceFile, int Track, const TAudioProperties *AP, char *FileName, void *Private) {
|
|
|
|
const char * FormatString = "%s.%d2.w64";
|
|
|
|
if (FileName == NULL)
|
2009-05-23 01:28:08 +02:00
|
|
|
return _snprintf(NULL, 0, FormatString, SourceFile, Track) + 1;
|
2009-05-22 23:28:02 +02:00
|
|
|
else
|
2009-05-23 01:28:08 +02:00
|
|
|
return _snprintf(FileName, 999999, FormatString, SourceFile, Track) + 1;
|
2009-05-22 23:28:02 +02:00
|
|
|
}
|
|
|
|
|
2009-05-20 20:57:03 +02:00
|
|
|
FFMS_API(FFIndexer *) FFMS_CreateIndexer(const char *SourceFile, char *ErrorMsg, unsigned MsgSize) {
|
|
|
|
try {
|
|
|
|
return FFIndexer::CreateFFIndexer(SourceFile, ErrorMsg, MsgSize);
|
|
|
|
} catch (...) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-22 23:28:02 +02:00
|
|
|
FFMS_API(FFIndex *) FFMS_DoIndexing(FFIndexer *Indexer, int IndexMask, int DumpMask, TAudioNameCallback ANC, void *ANCPrivate, bool IgnoreDecodeErrors, TIndexCallback IC, void *ICPrivate, char *ErrorMsg, unsigned MsgSize) {
|
2009-05-20 20:57:03 +02:00
|
|
|
Indexer->SetIndexMask(IndexMask);
|
|
|
|
Indexer->SetDumpMask(DumpMask);
|
|
|
|
Indexer->SetIgnoreDecodeErrors(IgnoreDecodeErrors);
|
2009-05-22 23:28:02 +02:00
|
|
|
Indexer->SetProgressCallback(IC, ICPrivate);
|
|
|
|
Indexer->SetAudioNameCallback(ANC, ANCPrivate);
|
|
|
|
FFIndex *Index = Indexer->DoIndexing(ErrorMsg, MsgSize);
|
2009-05-20 20:57:03 +02:00
|
|
|
delete Indexer;
|
|
|
|
return Index;
|
|
|
|
}
|
|
|
|
|
|
|
|
FFMS_API(void) FFMS_CancelIndexing(FFIndexer *Indexer) {
|
|
|
|
delete Indexer;
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(FFIndex *) FFMS_ReadIndex(const char *IndexFile, char *ErrorMsg, unsigned MsgSize) {
|
2009-05-20 20:57:03 +02:00
|
|
|
FFIndex *Index = new FFIndex();
|
|
|
|
if (Index->ReadIndex(IndexFile, ErrorMsg, MsgSize)) {
|
|
|
|
delete Index;
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
return Index;
|
|
|
|
}
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-05-16 01:11:18 +02:00
|
|
|
FFMS_API(int) FFMS_WriteIndex(const char *IndexFile, FFIndex *Index, char *ErrorMsg, unsigned MsgSize) {
|
2009-05-18 00:02:43 +02:00
|
|
|
return Index->WriteIndex(IndexFile, ErrorMsg, MsgSize);
|
2008-09-01 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
2009-04-25 10:55:14 +02:00
|
|
|
FFMS_API(int) FFMS_GetPixFmt(const char *Name) {
|
2009-04-24 21:56:19 +02:00
|
|
|
return avcodec_get_pix_fmt(Name);
|
2009-04-29 18:39:15 +02:00
|
|
|
}
|