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/
|
|
|
|
|
|
|
|
/// @file video_provider_ffmpegsource.h
|
|
|
|
/// @see video_provider_ffmpegsource.cpp
|
|
|
|
/// @ingroup video_input ffms
|
|
|
|
///
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2011-12-22 22:25:49 +01:00
|
|
|
#ifdef WITH_FFMS2
|
2009-09-11 04:36:34 +02:00
|
|
|
#include "ffmpegsource_common.h"
|
|
|
|
#include "include/aegisub/video_provider.h"
|
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 {
|
2012-02-20 19:22:12 +01:00
|
|
|
/// video source object
|
|
|
|
agi::scoped_holder<FFMS_VideoSource*, void (FFMS_CC*)(FFMS_VideoSource*)> VideoSource;
|
2013-12-12 01:29:48 +01:00
|
|
|
const FFMS_VideoProperties *VideoInfo = nullptr; ///< video properties
|
2009-09-26 23:58:00 +02:00
|
|
|
|
2013-12-12 01:29:48 +01:00
|
|
|
int Width = -1; ///< width in pixels
|
|
|
|
int Height = -1; ///< height in pixels
|
2012-02-23 02:30:59 +01:00
|
|
|
double DAR; ///< display aspect ratio
|
2012-01-24 00:07:35 +01:00
|
|
|
std::vector<int> KeyFramesList; ///< list of keyframes
|
|
|
|
agi::vfr::Framerate Timecodes; ///< vfr object
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string ColorSpace; ///< Colorspace name
|
2012-01-24 00:07:35 +01:00
|
|
|
|
|
|
|
char FFMSErrMsg[1024]; ///< FFMS error message
|
|
|
|
FFMS_ErrorInfo ErrInfo; ///< FFMS error codes/messages
|
2009-05-25 18:42:33 +02:00
|
|
|
|
2013-10-17 16:23:45 +02:00
|
|
|
void LoadVideo(agi::fs::path const& filename, std::string const& colormatrix);
|
2008-09-03 19:03:20 +02:00
|
|
|
|
|
|
|
public:
|
2013-10-17 16:23:45 +02:00
|
|
|
FFmpegSourceVideoProvider(agi::fs::path const& filename, std::string const& colormatrix);
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
std::shared_ptr<VideoFrame> GetFrame(int n) override;
|
2008-09-03 19:03:20 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
int GetFrameCount() const override { return VideoInfo->NumFrames; }
|
|
|
|
int GetWidth() const override { return Width; }
|
|
|
|
int GetHeight() const override { return Height; }
|
|
|
|
double GetDAR() const override { return DAR; }
|
|
|
|
agi::vfr::Framerate GetFPS() const override { return Timecodes; }
|
|
|
|
std::string GetColorSpace() const override { return ColorSpace; }
|
|
|
|
std::vector<int> GetKeyFrames() const override { return KeyFramesList; };
|
|
|
|
std::string GetDecoderName() const override { return "FFmpegSource"; }
|
|
|
|
bool WantsCaching() const override { return true; }
|
2008-09-03 19:03:20 +02:00
|
|
|
};
|
2011-12-22 22:25:49 +01:00
|
|
|
#endif /* WITH_FFMS2 */
|