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"
|
|
|
|
|
2008-09-03 19:03:20 +02:00
|
|
|
#ifdef WITH_FFMPEGSOURCE
|
|
|
|
|
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"
|
2008-12-28 04:07:40 +01:00
|
|
|
#include "include/aegisub/aegisub.h"
|
2010-05-21 03:13:36 +02:00
|
|
|
#include "main.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
|
2009-07-23 17:16:53 +02:00
|
|
|
FFmpegSourceVideoProvider::FFmpegSourceVideoProvider(wxString filename) {
|
2009-05-25 18:42:33 +02:00
|
|
|
COMInited = false;
|
2009-05-25 17:52:42 +02:00
|
|
|
#ifdef WIN32
|
2009-05-25 18:42:33 +02:00
|
|
|
HRESULT res;
|
|
|
|
res = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
|
|
|
|
if (SUCCEEDED(res))
|
|
|
|
COMInited = true;
|
|
|
|
else if (res != RPC_E_CHANGED_MODE)
|
2009-05-25 17:52:42 +02:00
|
|
|
throw _T("FFmpegSource video provider: COM initialization failure");
|
|
|
|
#endif
|
|
|
|
// initialize ffmpegsource
|
2009-07-14 00:30:48 +02:00
|
|
|
// FIXME: CPU detection?
|
|
|
|
FFMS_Init(0);
|
2008-09-03 19:03:20 +02:00
|
|
|
|
|
|
|
// clean up variables
|
|
|
|
VideoSource = NULL;
|
|
|
|
FrameNumber = -1;
|
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-23 23:06:11 +02:00
|
|
|
ErrorMsg = _T("FFmpegSource video provider: ");
|
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);
|
2008-09-23 03:19:31 +02:00
|
|
|
} catch (...) {
|
|
|
|
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();
|
2009-05-25 17:52:42 +02:00
|
|
|
#ifdef WIN32
|
2009-05-25 18:42:33 +02:00
|
|
|
if (COMInited)
|
|
|
|
CoUninitialize();
|
2009-05-25 17:52:42 +02:00
|
|
|
#endif
|
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
|
|
|
|
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) {
|
2008-09-03 19:03:20 +02:00
|
|
|
// make sure we don't have anything messy lying around
|
|
|
|
Close();
|
|
|
|
|
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) {
|
|
|
|
// error messages that can possibly contain a filename use this method instead of
|
|
|
|
// wxString::Format because they may contain utf8 characters
|
2009-09-26 23:58:00 +02:00
|
|
|
ErrorMsg.Append(_T("Failed to create indexer: ")).Append(wxString(ErrInfo.Buffer, wxConvUTF8));
|
2009-07-16 16:48:47 +02:00
|
|
|
throw ErrorMsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::map<int,wxString> TrackList = GetTracksOfType(Indexer, FFMS_TYPE_VIDEO);
|
|
|
|
if (TrackList.size() <= 0)
|
|
|
|
throw _T("FFmpegSource video provider: no video tracks found");
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
throw _T("FFmpegSource video provider: video loading cancelled by user");
|
|
|
|
}
|
|
|
|
|
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);
|
2008-09-24 01:30:27 +02:00
|
|
|
} catch (wxString temp) {
|
2009-07-16 16:48:47 +02:00
|
|
|
ErrorMsg.Append(temp);
|
2008-09-03 19:03:20 +02:00
|
|
|
throw ErrorMsg;
|
2008-09-24 01:30:27 +02:00
|
|
|
} catch (...) {
|
|
|
|
throw;
|
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;
|
2009-09-26 23:58:00 +02:00
|
|
|
ErrorMsg.Append(wxString::Format(_T("Couldn't find any video tracks: %s"), ErrInfo.Buffer));
|
2010-07-08 06:29:04 +02:00
|
|
|
throw ErrorMsg;
|
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
|
|
|
if (Threads < 1)
|
|
|
|
throw _T("FFmpegSource video provider: invalid decoding thread count");
|
|
|
|
|
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) {
|
2009-09-26 23:58:00 +02:00
|
|
|
ErrorMsg.Append(wxString::Format(_T("Failed to open video track: %s"), ErrInfo.Buffer));
|
2008-09-03 19:03:20 +02:00
|
|
|
throw ErrorMsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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) {
|
|
|
|
ErrorMsg.Append(wxString::Format(_T("Failed to decode first frame: %s"), ErrInfo.Buffer));
|
|
|
|
throw ErrorMsg;
|
|
|
|
}
|
|
|
|
Width = TempFrame->EncodedWidth;
|
|
|
|
Height = TempFrame->EncodedHeight;
|
|
|
|
|
2010-06-11 04:24:59 +02:00
|
|
|
if (FFMS_SetOutputFormatV(VideoSource, 1LL << FFMS_GetPixFmt("bgra"), Width, Height, FFMS_RESIZER_BICUBIC, &ErrInfo)) {
|
2009-09-26 23:58:00 +02:00
|
|
|
ErrorMsg.Append(wxString::Format(_T("Failed to set output format: %s"), ErrInfo.Buffer));
|
2009-07-20 05:50:25 +02:00
|
|
|
throw ErrorMsg;
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
throw _T("FFmpegSource video provider: 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)
|
|
|
|
throw _T("FFmpegSource video provider: 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) {
|
2009-07-16 16:48:47 +02:00
|
|
|
ErrorMsg.Append(wxString::Format(_T("Couldn't get info about frame %d"), CurFrameNum));
|
2008-09-03 19:03:20 +02:00
|
|
|
throw ErrorMsg;
|
|
|
|
}
|
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
|
|
|
}
|
2010-07-08 06:29:04 +02:00
|
|
|
Timecodes = agi::vfr::Framerate(TimecodesVector);
|
2008-09-03 19:03:20 +02:00
|
|
|
|
|
|
|
FrameNumber = 0;
|
|
|
|
}
|
|
|
|
|
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 Close video
|
|
|
|
///
|
2008-09-03 19:03:20 +02:00
|
|
|
void FFmpegSourceVideoProvider::Close() {
|
2009-04-29 19:40:02 +02:00
|
|
|
FFMS_DestroyVideoSource(VideoSource);
|
2008-09-03 19:03:20 +02:00
|
|
|
VideoSource = NULL;
|
|
|
|
|
|
|
|
KeyFramesList.clear();
|
|
|
|
FrameNumber = -1;
|
2010-07-08 06:29:04 +02:00
|
|
|
Timecodes = agi::vfr::Framerate();
|
2009-05-10 02:12:04 +02:00
|
|
|
CurFrame.Clear();
|
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 Get frame
|
|
|
|
/// @param _n
|
|
|
|
/// @return
|
|
|
|
///
|
2009-07-20 05:50:25 +02:00
|
|
|
const AegiVideoFrame FFmpegSourceVideoProvider::GetFrame(int _n) {
|
2008-09-03 23:03:18 +02:00
|
|
|
// don't try to seek to insane places
|
|
|
|
int n = _n;
|
|
|
|
if (n < 0)
|
|
|
|
n = 0;
|
|
|
|
if (n >= GetFrameCount())
|
|
|
|
n = GetFrameCount()-1;
|
|
|
|
// set position
|
|
|
|
FrameNumber = n;
|
2008-09-10 23:05:54 +02:00
|
|
|
|
|
|
|
// decode frame
|
2009-09-26 23:58:00 +02:00
|
|
|
const FFMS_Frame *SrcFrame = FFMS_GetFrame(VideoSource, n, &ErrInfo);
|
2008-09-03 19:03:20 +02:00
|
|
|
if (SrcFrame == NULL) {
|
2009-09-26 23:58:00 +02:00
|
|
|
ErrorMsg.Append(wxString::Format(_T("Failed to retrieve frame: %s"), ErrInfo.Buffer));
|
2008-09-03 19:03:20 +02:00
|
|
|
throw ErrorMsg;
|
|
|
|
}
|
|
|
|
|
2009-10-24 04:07:56 +02:00
|
|
|
CurFrame.SetTo(SrcFrame->Data, Width, Height, SrcFrame->Linesize, FORMAT_RGB32);
|
|
|
|
return CurFrame;
|
2008-09-03 19:03:20 +02:00
|
|
|
}
|
2008-09-05 00:17:34 +02:00
|
|
|
#endif /* WITH_FFMPEGSOURCE */
|