2009-07-16 16:48:47 +02:00
|
|
|
// Copyright (c) 2008-2009, Karl Blomster
|
2008-09-03 19:03:20 +02:00
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
2008-09-03 19:03:20 +02:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file video_provider_ffmpegsource.cpp
|
|
|
|
/// @brief FFmpegSource2-based video provider
|
|
|
|
/// @ingroup video_input ffms
|
|
|
|
///
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-12-22 22:25:49 +01:00
|
|
|
#ifdef WITH_FFMS2
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2009-09-10 15:06:40 +02:00
|
|
|
#ifndef AGI_PRE
|
|
|
|
#ifdef __WINDOWS__
|
|
|
|
#include <objbase.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2009-07-16 16:48:47 +02:00
|
|
|
#include <wx/choicdlg.h>
|
2009-09-10 12:26:50 +02:00
|
|
|
#include <wx/msgdlg.h>
|
2009-09-10 15:06:40 +02:00
|
|
|
#include <wx/utils.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "aegisub_endian.h"
|
2010-08-02 08:32:01 +02:00
|
|
|
#include "compat.h"
|
2010-05-21 03:13:36 +02:00
|
|
|
#include "main.h"
|
2010-12-31 22:03:11 +01:00
|
|
|
#include "utils.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "video_context.h"
|
|
|
|
#include "video_provider_ffmpegsource.h"
|
2008-09-03 19:03:20 +02:00
|
|
|
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
|
|
|
/// @brief Constructor
|
2009-09-26 23:58:00 +02:00
|
|
|
/// @param filename The filename to open
|
2010-08-02 08:32:01 +02:00
|
|
|
FFmpegSourceVideoProvider::FFmpegSourceVideoProvider(wxString filename)
|
|
|
|
: VideoSource(NULL)
|
|
|
|
, VideoInfo(NULL)
|
|
|
|
, Width(-1)
|
|
|
|
, Height(-1)
|
|
|
|
, FrameNumber(-1)
|
|
|
|
, COMInited(false)
|
|
|
|
{
|
2009-05-25 17:52:42 +02:00
|
|
|
#ifdef WIN32
|
2010-08-02 08:32:01 +02:00
|
|
|
HRESULT res = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
|
2009-05-25 18:42:33 +02:00
|
|
|
if (SUCCEEDED(res))
|
|
|
|
COMInited = true;
|
|
|
|
else if (res != RPC_E_CHANGED_MODE)
|
2010-08-02 08:32:01 +02:00
|
|
|
throw VideoOpenError("COM initialization failure");
|
2009-05-25 17:52:42 +02:00
|
|
|
#endif
|
|
|
|
// initialize ffmpegsource
|
2009-07-14 00:30:48 +02:00
|
|
|
// FIXME: CPU detection?
|
2010-11-09 20:55:23 +01:00
|
|
|
#if FFMS_VERSION >= ((2 << 24) | (14 << 16) | (0 << 8) | 0)
|
|
|
|
FFMS_Init(0, 1);
|
|
|
|
#else
|
2009-07-14 00:30:48 +02:00
|
|
|
FFMS_Init(0);
|
2010-11-09 20:55:23 +01:00
|
|
|
#endif
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2009-09-26 23:58:00 +02:00
|
|
|
ErrInfo.Buffer = FFMSErrMsg;
|
|
|
|
ErrInfo.BufferSize = sizeof(FFMSErrMsg);
|
|
|
|
ErrInfo.ErrorType = FFMS_ERROR_SUCCESS;
|
|
|
|
ErrInfo.SubType = FFMS_ERROR_SUCCESS;
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2009-07-24 03:41:16 +02:00
|
|
|
SetLogLevel();
|
|
|
|
|
2008-09-03 19:03:20 +02:00
|
|
|
// and here we go
|
2008-09-23 03:19:31 +02:00
|
|
|
try {
|
2009-07-20 02:39:38 +02:00
|
|
|
LoadVideo(filename);
|
2010-08-02 08:32:01 +02:00
|
|
|
}
|
|
|
|
catch (wxString const& err) {
|
|
|
|
Close();
|
|
|
|
throw VideoOpenError(STD_STR(err));
|
|
|
|
}
|
|
|
|
catch (...) {
|
2008-09-23 03:19:31 +02:00
|
|
|
Close();
|
2008-10-28 05:24:45 +01:00
|
|
|
throw;
|
2008-09-23 03:19:31 +02:00
|
|
|
}
|
2008-09-03 19:03:20 +02:00
|
|
|
}
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
|
|
|
/// @brief Destructor
|
2008-09-03 19:03:20 +02:00
|
|
|
FFmpegSourceVideoProvider::~FFmpegSourceVideoProvider() {
|
|
|
|
Close();
|
|
|
|
}
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2009-09-26 23:58:00 +02:00
|
|
|
/// @brief Opens video
|
|
|
|
/// @param filename The filename to open
|
2009-07-23 17:16:53 +02:00
|
|
|
void FFmpegSourceVideoProvider::LoadVideo(wxString filename) {
|
2009-07-23 21:57:57 +02:00
|
|
|
wxString FileNameShort = wxFileName(filename).GetShortPath();
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2009-09-26 23:58:00 +02:00
|
|
|
FFMS_Indexer *Indexer = FFMS_CreateIndexer(FileNameShort.utf8_str(), &ErrInfo);
|
2009-07-16 16:48:47 +02:00
|
|
|
if (Indexer == NULL) {
|
2010-08-02 08:32:01 +02:00
|
|
|
throw agi::FileNotFoundError(ErrInfo.Buffer);
|
2009-07-16 16:48:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::map<int,wxString> TrackList = GetTracksOfType(Indexer, FFMS_TYPE_VIDEO);
|
|
|
|
if (TrackList.size() <= 0)
|
2010-08-02 08:32:01 +02:00
|
|
|
throw VideoNotSupported("no video tracks found");
|
2009-07-16 16:48:47 +02:00
|
|
|
|
|
|
|
// initialize the track number to an invalid value so we can detect later on
|
|
|
|
// whether the user actually had to choose a track or not
|
|
|
|
int TrackNumber = -1;
|
|
|
|
if (TrackList.size() > 1) {
|
|
|
|
TrackNumber = AskForTrackSelection(TrackList, FFMS_TYPE_VIDEO);
|
|
|
|
// if it's still -1 here, user pressed cancel
|
|
|
|
if (TrackNumber == -1)
|
2010-08-02 08:32:01 +02:00
|
|
|
throw agi::UserCancelException("video loading cancelled by user");
|
2009-07-16 16:48:47 +02:00
|
|
|
}
|
|
|
|
|
2008-09-03 19:03:20 +02:00
|
|
|
// generate a name for the cache file
|
2009-07-23 21:57:57 +02:00
|
|
|
wxString CacheName = GetCacheFilename(filename);
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2008-09-05 00:17:34 +02:00
|
|
|
// try to read index
|
2009-09-26 23:58:00 +02:00
|
|
|
FFMS_Index *Index = NULL;
|
|
|
|
Index = FFMS_ReadIndex(CacheName.utf8_str(), &ErrInfo);
|
2009-07-16 16:48:47 +02:00
|
|
|
bool IndexIsValid = false;
|
|
|
|
if (Index != NULL) {
|
2009-09-26 23:58:00 +02:00
|
|
|
if (FFMS_IndexBelongsToFile(Index, FileNameShort.utf8_str(), &ErrInfo)) {
|
2009-07-16 16:48:47 +02:00
|
|
|
FFMS_DestroyIndex(Index);
|
|
|
|
Index = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
IndexIsValid = true;
|
2009-07-14 00:30:48 +02:00
|
|
|
}
|
|
|
|
|
2009-07-16 16:48:47 +02:00
|
|
|
// time to examine the index and check if the track we want is indexed
|
|
|
|
// technically this isn't really needed since all video tracks should always be indexed,
|
|
|
|
// but a bit of sanity checking never hurt anyone
|
|
|
|
if (IndexIsValid && TrackNumber >= 0) {
|
2009-09-26 23:58:00 +02:00
|
|
|
FFMS_Track *TempTrackData = FFMS_GetTrackFromIndex(Index, TrackNumber);
|
2009-07-16 16:48:47 +02:00
|
|
|
if (FFMS_GetNumFrames(TempTrackData) <= 0) {
|
|
|
|
IndexIsValid = false;
|
|
|
|
FFMS_DestroyIndex(Index);
|
|
|
|
Index = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// moment of truth
|
|
|
|
if (!IndexIsValid) {
|
2010-05-21 03:13:36 +02:00
|
|
|
int TrackMask = OPT_GET("Provider/FFmpegSource/Index All Tracks")->GetBool() ? FFMS_TRACKMASK_ALL : FFMS_TRACKMASK_NONE;
|
2008-09-24 01:30:27 +02:00
|
|
|
try {
|
2009-08-07 22:16:13 +02:00
|
|
|
// ignore audio decoding errors here, we don't care right now
|
2009-11-28 22:13:47 +01:00
|
|
|
Index = DoIndexing(Indexer, CacheName, TrackMask, FFMS_IEH_IGNORE);
|
2010-08-02 08:32:01 +02:00
|
|
|
}
|
|
|
|
catch (wxString err) {
|
|
|
|
throw VideoOpenError(STD_STR(err));
|
2008-09-03 19:03:20 +02:00
|
|
|
}
|
|
|
|
}
|
2009-07-16 16:48:47 +02:00
|
|
|
|
2009-05-03 20:05:30 +02:00
|
|
|
// update access time of index file so it won't get cleaned away
|
2009-09-26 23:58:00 +02:00
|
|
|
wxFileName(CacheName).Touch();
|
2009-05-03 20:05:30 +02:00
|
|
|
|
|
|
|
// we have now read the index and may proceed with cleaning the index cache
|
|
|
|
if (!CleanCache()) {
|
|
|
|
//do something?
|
|
|
|
}
|
|
|
|
|
2009-07-16 16:48:47 +02:00
|
|
|
// track number still not set?
|
|
|
|
if (TrackNumber < 0) {
|
|
|
|
// just grab the first track
|
2009-09-26 23:58:00 +02:00
|
|
|
TrackNumber = FFMS_GetFirstIndexedTrackOfType(Index, FFMS_TYPE_VIDEO, &ErrInfo);
|
2009-07-16 16:48:47 +02:00
|
|
|
if (TrackNumber < 0) {
|
|
|
|
FFMS_DestroyIndex(Index);
|
|
|
|
Index = NULL;
|
2010-08-02 08:32:01 +02:00
|
|
|
throw VideoNotSupported(std::string("Couldn't find any video tracks: ") + ErrInfo.Buffer);
|
2009-07-16 16:48:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-03 23:22:33 +02:00
|
|
|
// set thread count
|
2010-05-21 03:13:36 +02:00
|
|
|
int Threads = OPT_GET("Provider/Video/FFmpegSource/Decoding Threads")->GetInt();
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2008-09-03 23:22:33 +02:00
|
|
|
// set seekmode
|
|
|
|
// TODO: give this its own option?
|
|
|
|
int SeekMode;
|
2010-06-03 07:07:10 +02:00
|
|
|
if (OPT_GET("Provider/Video/FFmpegSource/Unsafe Seeking")->GetBool())
|
2009-04-26 01:08:45 +02:00
|
|
|
SeekMode = FFMS_SEEK_UNSAFE;
|
2008-09-03 23:22:33 +02:00
|
|
|
else
|
2009-04-26 01:08:45 +02:00
|
|
|
SeekMode = FFMS_SEEK_NORMAL;
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2009-09-26 23:58:00 +02:00
|
|
|
VideoSource = FFMS_CreateVideoSource(FileNameShort.utf8_str(), TrackNumber, Index, Threads, SeekMode, &ErrInfo);
|
2009-05-28 21:34:52 +02:00
|
|
|
FFMS_DestroyIndex(Index);
|
2009-04-29 19:40:02 +02:00
|
|
|
Index = NULL;
|
2008-09-03 19:03:20 +02:00
|
|
|
if (VideoSource == NULL) {
|
2010-08-02 08:32:01 +02:00
|
|
|
throw VideoOpenError(std::string("Failed to open video track: ") + ErrInfo.Buffer);
|
2008-09-03 19:03:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// load video properties
|
2009-05-18 00:12:46 +02:00
|
|
|
VideoInfo = FFMS_GetVideoProperties(VideoSource);
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2009-09-26 23:58:00 +02:00
|
|
|
const FFMS_Frame *TempFrame = FFMS_GetFrame(VideoSource, 0, &ErrInfo);
|
|
|
|
if (TempFrame == NULL) {
|
2010-08-02 08:32:01 +02:00
|
|
|
throw VideoOpenError(std::string("Failed to decode first frame: ") + ErrInfo.Buffer);
|
2009-09-26 23:58:00 +02:00
|
|
|
}
|
|
|
|
Width = TempFrame->EncodedWidth;
|
|
|
|
Height = TempFrame->EncodedHeight;
|
|
|
|
|
2012-01-24 00:07:35 +01:00
|
|
|
switch (TempFrame->ColorSpace) {
|
|
|
|
case FFMS_CS_RGB: ColorSpace = "RGB"; break;
|
|
|
|
case FFMS_CS_BT709: ColorSpace = "BT.709"; break;
|
|
|
|
case FFMS_CS_BT470BG: ColorSpace = "BT.601"; break;
|
|
|
|
case FFMS_CS_UNSPECIFIED: ColorSpace = Width > 1024 || Height >= 600 ? "BT.709" : "BT.601"; break;
|
|
|
|
default: ColorSpace = ""; break;
|
|
|
|
}
|
|
|
|
|
2011-10-17 19:52:11 +02:00
|
|
|
#if FFMS_VERSION >= ((2 << 24) | (15 << 16) | (3 << 8) | 0)
|
|
|
|
const int TargetFormat[] = { FFMS_GetPixFmt("bgra"), -1 };
|
|
|
|
if (FFMS_SetOutputFormatV2(VideoSource, TargetFormat, Width, Height, FFMS_RESIZER_BICUBIC, &ErrInfo)) {
|
|
|
|
#else
|
2010-06-11 04:24:59 +02:00
|
|
|
if (FFMS_SetOutputFormatV(VideoSource, 1LL << FFMS_GetPixFmt("bgra"), Width, Height, FFMS_RESIZER_BICUBIC, &ErrInfo)) {
|
2011-10-17 19:52:11 +02:00
|
|
|
#endif
|
2010-08-02 08:32:01 +02:00
|
|
|
throw VideoOpenError(std::string("Failed to set output format: ") + ErrInfo.Buffer);
|
2009-07-20 05:50:25 +02:00
|
|
|
}
|
|
|
|
|
2008-09-03 19:03:20 +02:00
|
|
|
// get frame info data
|
2009-09-26 23:58:00 +02:00
|
|
|
FFMS_Track *FrameData = FFMS_GetTrackFromVideo(VideoSource);
|
2008-10-02 00:08:28 +02:00
|
|
|
if (FrameData == NULL)
|
2010-08-02 08:32:01 +02:00
|
|
|
throw VideoOpenError("failed to get frame data");
|
2009-09-26 23:58:00 +02:00
|
|
|
const FFMS_TrackTimeBase *TimeBase = FFMS_GetTimeBase(FrameData);
|
2008-10-02 00:08:28 +02:00
|
|
|
if (TimeBase == NULL)
|
2010-08-02 08:32:01 +02:00
|
|
|
throw VideoOpenError("failed to get track time base");
|
2008-09-03 22:27:50 +02:00
|
|
|
|
2009-09-26 23:58:00 +02:00
|
|
|
const FFMS_FrameInfo *CurFrameData;
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2008-09-03 22:27:50 +02:00
|
|
|
// build list of keyframes and timecodes
|
2010-07-08 06:29:04 +02:00
|
|
|
std::vector<int> TimecodesVector;
|
2008-09-03 19:03:20 +02:00
|
|
|
for (int CurFrameNum = 0; CurFrameNum < VideoInfo->NumFrames; CurFrameNum++) {
|
2009-05-23 16:18:51 +02:00
|
|
|
CurFrameData = FFMS_GetFrameInfo(FrameData, CurFrameNum);
|
2008-09-03 19:03:20 +02:00
|
|
|
if (CurFrameData == NULL) {
|
2011-09-28 21:43:11 +02:00
|
|
|
throw VideoOpenError(STD_STR(wxString::Format("Couldn't get info about frame %d", CurFrameNum)));
|
2008-09-03 19:03:20 +02:00
|
|
|
}
|
2008-09-03 22:27:50 +02:00
|
|
|
|
|
|
|
// keyframe?
|
|
|
|
if (CurFrameData->KeyFrame)
|
2010-07-08 06:29:04 +02:00
|
|
|
KeyFramesList.push_back(CurFrameNum);
|
2008-09-03 22:27:50 +02:00
|
|
|
|
|
|
|
// calculate timestamp and add to timecodes vector
|
2009-11-21 22:15:02 +01:00
|
|
|
int Timestamp = (int)((CurFrameData->PTS * TimeBase->Num) / TimeBase->Den);
|
2008-09-06 04:54:22 +02:00
|
|
|
TimecodesVector.push_back(Timestamp);
|
2008-09-03 19:03:20 +02:00
|
|
|
}
|
2011-09-29 22:27:23 +02:00
|
|
|
if (TimecodesVector.size() < 2)
|
|
|
|
Timecodes = 25.0;
|
|
|
|
else
|
|
|
|
Timecodes = agi::vfr::Framerate(TimecodesVector);
|
2008-09-03 19:03:20 +02:00
|
|
|
|
|
|
|
FrameNumber = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FFmpegSourceVideoProvider::Close() {
|
2010-08-02 08:32:01 +02:00
|
|
|
if (VideoSource) FFMS_DestroyVideoSource(VideoSource);
|
|
|
|
#ifdef WIN32
|
|
|
|
if (COMInited)
|
|
|
|
CoUninitialize();
|
|
|
|
#endif
|
2008-09-03 19:03:20 +02:00
|
|
|
}
|
|
|
|
|
2010-12-31 22:03:11 +01:00
|
|
|
const AegiVideoFrame FFmpegSourceVideoProvider::GetFrame(int n) {
|
|
|
|
FrameNumber = mid(0, n, GetFrameCount() - 1);
|
2008-09-10 23:05:54 +02:00
|
|
|
|
|
|
|
// decode frame
|
2010-12-31 22:03:11 +01:00
|
|
|
const FFMS_Frame *SrcFrame = FFMS_GetFrame(VideoSource, FrameNumber, &ErrInfo);
|
2008-09-03 19:03:20 +02:00
|
|
|
if (SrcFrame == NULL) {
|
2010-08-02 08:32:01 +02:00
|
|
|
throw VideoDecodeError(std::string("Failed to retrieve frame:") + ErrInfo.Buffer);
|
2008-09-03 19:03:20 +02:00
|
|
|
}
|
|
|
|
|
2010-12-31 22:03:11 +01:00
|
|
|
CurFrame.SetTo(SrcFrame->Data[0], Width, Height, SrcFrame->Linesize[0]);
|
2009-10-24 04:07:56 +02:00
|
|
|
return CurFrame;
|
2008-09-03 19:03:20 +02:00
|
|
|
}
|
2012-01-24 00:07:35 +01:00
|
|
|
|
2011-12-22 22:25:49 +01:00
|
|
|
#endif /* WITH_FFMS2 */
|