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.h
|
|
|
|
/// @see video_provider_ffmpegsource.cpp
|
|
|
|
/// @ingroup video_input ffms
|
|
|
|
///
|
2008-09-03 19:03:20 +02:00
|
|
|
|
|
|
|
///////////
|
|
|
|
// Headers
|
|
|
|
#ifdef WITH_FFMPEGSOURCE
|
2009-09-11 04:36:34 +02:00
|
|
|
#ifndef AGI_PRE
|
2008-09-03 19:03:20 +02:00
|
|
|
#include <vector>
|
2009-09-11 04:36:34 +02:00
|
|
|
#endif
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2009-09-11 04:36:34 +02:00
|
|
|
#include "ffmpegsource_common.h"
|
|
|
|
#include "include/aegisub/video_provider.h"
|
|
|
|
#include "vfr.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
|
|
|
|
|
|
|
/// @class FFmpegSourceVideoProvider
|
2009-09-26 23:58:00 +02:00
|
|
|
/// @brief Implements video loading through the FFMS library.
|
2008-09-23 22:01:11 +02:00
|
|
|
class FFmpegSourceVideoProvider : public VideoProvider, FFmpegSourceProvider {
|
2008-09-03 19:03:20 +02:00
|
|
|
private:
|
2009-09-26 23:58:00 +02:00
|
|
|
FFMS_VideoSource *VideoSource; /// video source object
|
|
|
|
const FFMS_VideoProperties *VideoInfo; /// video properties
|
|
|
|
|
|
|
|
int Width; /// width in pixels
|
|
|
|
int Height; /// height in pixels
|
|
|
|
int FrameNumber; /// current framenumber
|
|
|
|
wxArrayInt KeyFramesList; /// list of keyframes
|
|
|
|
bool KeyFramesLoaded; /// keyframe loading state
|
|
|
|
std::vector<int> TimecodesVector; /// list of timestamps
|
|
|
|
FrameRate Timecodes; /// vfr object
|
|
|
|
bool COMInited; /// COM initialization state
|
|
|
|
|
|
|
|
AegiVideoFrame CurFrame; /// current video frame
|
|
|
|
|
|
|
|
char FFMSErrMsg[1024]; /// FFMS error message
|
|
|
|
FFMS_ErrorInfo ErrInfo; /// FFMS error codes/messages
|
|
|
|
wxString ErrorMsg; /// wx-ified error message
|
2009-05-25 18:42:33 +02:00
|
|
|
|
2009-07-23 17:16:53 +02:00
|
|
|
void LoadVideo(wxString filename);
|
2008-09-03 19:03:20 +02:00
|
|
|
void Close();
|
|
|
|
|
|
|
|
public:
|
2009-07-23 17:16:53 +02:00
|
|
|
FFmpegSourceVideoProvider(wxString filename);
|
2008-09-03 19:03:20 +02:00
|
|
|
~FFmpegSourceVideoProvider();
|
|
|
|
|
2009-07-20 05:50:25 +02:00
|
|
|
const AegiVideoFrame GetFrame(int n);
|
2008-09-03 19:03:20 +02:00
|
|
|
int GetPosition();
|
|
|
|
int GetFrameCount();
|
|
|
|
|
|
|
|
int GetWidth();
|
|
|
|
int GetHeight();
|
|
|
|
double GetFPS();
|
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 Reports keyframe status
|
|
|
|
/// @return Returns true if keyframes are loaded, false otherwise.
|
2008-09-03 19:03:20 +02:00
|
|
|
bool AreKeyFramesLoaded() { return KeyFramesLoaded; };
|
2009-09-26 23:58:00 +02:00
|
|
|
/// @brief Gets a list of keyframes
|
|
|
|
/// @return Returns a wxArrayInt of keyframes.
|
2008-09-03 19:03:20 +02:00
|
|
|
wxArrayInt GetKeyFrames() { return KeyFramesList; };
|
2009-09-26 23:58:00 +02:00
|
|
|
/// @brief Checks if source is VFR
|
|
|
|
/// @return Returns true.
|
2008-09-03 22:27:50 +02:00
|
|
|
bool IsVFR() { return true; };
|
2009-09-26 23:58:00 +02:00
|
|
|
/// @brief Gets a VFR framerate object
|
|
|
|
/// @return Returns the framerate object.
|
2008-09-03 23:03:18 +02:00
|
|
|
FrameRate GetTrueFrameRate() { return Timecodes; };
|
2009-09-26 23:58:00 +02:00
|
|
|
/// @brief Gets the name of the provider
|
|
|
|
/// @return Returns "FFmpegSource".
|
2009-07-23 17:16:53 +02:00
|
|
|
wxString GetDecoderName() { return L"FFmpegSource"; }
|
2009-11-29 20:09:55 +01:00
|
|
|
/// @brief Gets the desired cache behavior.
|
|
|
|
/// @return Returns true.
|
2009-11-29 20:07:53 +01:00
|
|
|
bool WantsCaching() { return true; }
|
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
|
|
|
|
|
|
|
/// @class FFmpegSourceVideoProviderFactory
|
2009-09-26 23:58:00 +02:00
|
|
|
/// @brief Creates a FFmpegSource video provider.
|
2008-09-03 19:03:20 +02:00
|
|
|
class FFmpegSourceVideoProviderFactory : public VideoProviderFactory {
|
|
|
|
public:
|
2009-09-26 23:58:00 +02:00
|
|
|
/// @brief Creates a FFmpegSource video provider.
|
|
|
|
/// @param video The video filename to open.
|
|
|
|
/// @return Returns the video provider.
|
2009-07-23 17:16:53 +02:00
|
|
|
VideoProvider *CreateProvider(wxString video) { return new FFmpegSourceVideoProvider(video); }
|
2008-09-03 19:03:20 +02:00
|
|
|
};
|
|
|
|
|
2008-09-05 00:17:34 +02:00
|
|
|
|
|
|
|
#endif /* WITH_FFMPEGSOURCE */
|
2009-07-29 07:43:02 +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
|
|
|
|