Open CASCADE Technology
7.3.0
|
Video recording tool based on FFmpeg framework. More...
#include <Image_VideoRecorder.hxx>
Data Structures | |
struct | VideoRational |
AVRational alias. More... | |
Public Member Functions | |
Image_VideoRecorder () | |
Empty constructor. More... | |
virtual | ~Image_VideoRecorder () |
Destructor. More... | |
void | Close () |
Close the stream - stop recorder. More... | |
Standard_Boolean | Open (const char *theFileName, const Image_VideoParams &theParams) |
Open output stream - initialize recorder. More... | |
Image_PixMap & | ChangeFrame () |
Access RGBA frame, should NOT be re-initialized outside. Note that image is expected to have upper-left origin. More... | |
int64_t | FrameCount () const |
Return current frame index. More... | |
Standard_Boolean | PushFrame () |
Push new frame, should be called after Open(). More... | |
Public Member Functions inherited from Standard_Transient | |
Standard_Transient () | |
Empty constructor. More... | |
Standard_Transient (const Standard_Transient &) | |
Copy constructor – does nothing. More... | |
Standard_Transient & | operator= (const Standard_Transient &) |
Assignment operator, needed to avoid copying reference counter. More... | |
virtual | ~Standard_Transient () |
Destructor must be virtual. More... | |
virtual void | Delete () const |
Memory deallocator for transient classes. More... | |
virtual const opencascade::handle< Standard_Type > & | DynamicType () const |
Returns a type descriptor about this object. More... | |
Standard_Boolean | IsInstance (const opencascade::handle< Standard_Type > &theType) const |
Returns a true value if this is an instance of Type. More... | |
Standard_Boolean | IsInstance (const Standard_CString theTypeName) const |
Returns a true value if this is an instance of TypeName. More... | |
Standard_Boolean | IsKind (const opencascade::handle< Standard_Type > &theType) const |
Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism. More... | |
Standard_Boolean | IsKind (const Standard_CString theTypeName) const |
Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism. More... | |
Standard_Transient * | This () const |
Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero. More... | |
Standard_Integer | GetRefCount () const |
Get the reference counter of this object. More... | |
void | IncrementRefCounter () const |
Increments the reference counter of this object. More... | |
Standard_Integer | DecrementRefCounter () const |
Decrements the reference counter of this object; returns the decremented value. More... | |
Protected Member Functions | |
TCollection_AsciiString | formatAvError (const int theError) const |
Wrapper for av_strerror(). More... | |
Standard_Boolean | addVideoStream (const Image_VideoParams &theParams, const Standard_Integer theDefCodecId) |
Append video stream. theParams [in] video parameters theDefCodecId [in] identifier of codec managed by FFmpeg library (AVCodecID enum) More... | |
Standard_Boolean | openVideoCodec (const Image_VideoParams &theParams) |
Open video codec. More... | |
Standard_Boolean | writeVideoFrame (const Standard_Boolean theToFlush) |
Write new video frame. More... | |
Protected Attributes | |
AVFormatContext * | myAVContext |
video context More... | |
AVStream * | myVideoStream |
video stream More... | |
AVCodec * | myVideoCodec |
video codec More... | |
AVFrame * | myFrame |
frame to record More... | |
SwsContext * | myScaleCtx |
scale context for conversion from RGBA to YUV More... | |
Image_PixMap | myImgSrcRgba |
input RGBA image More... | |
VideoRational | myFrameRate |
video framerate More... | |
int64_t | myFrameCount |
current frame index More... | |
Additional Inherited Members | |
Public Types inherited from Standard_Transient | |
typedef void | base_type |
Returns a type descriptor about this object. More... | |
Static Public Member Functions inherited from Standard_Transient | |
static const char * | get_type_name () |
Returns a type descriptor about this object. More... | |
static const opencascade::handle< Standard_Type > & | get_type_descriptor () |
Returns type descriptor of Standard_Transient class. More... | |
Video recording tool based on FFmpeg framework.
Image_VideoRecorder::Image_VideoRecorder | ( | ) |
Empty constructor.
|
virtual |
Destructor.
|
protected |
Append video stream. theParams [in] video parameters theDefCodecId [in] identifier of codec managed by FFmpeg library (AVCodecID enum)
|
inline |
Access RGBA frame, should NOT be re-initialized outside. Note that image is expected to have upper-left origin.
void Image_VideoRecorder::Close | ( | ) |
Close the stream - stop recorder.
|
protected |
Wrapper for av_strerror().
|
inline |
Return current frame index.
Standard_Boolean Image_VideoRecorder::Open | ( | const char * | theFileName, |
const Image_VideoParams & | theParams | ||
) |
Open output stream - initialize recorder.
theFileName | [in] video filename |
theParams | [in] video parameters |
|
protected |
Open video codec.
|
inline |
Push new frame, should be called after Open().
|
protected |
Write new video frame.
|
protected |
video context
|
protected |
frame to record
|
protected |
current frame index
|
protected |
video framerate
|
protected |
input RGBA image
|
protected |
scale context for conversion from RGBA to YUV
|
protected |
video codec
|
protected |
video stream