We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d42f16 commit a10dc3fCopy full SHA for a10dc3f
src/AvTranscoder/EssenceStructures/VideoFrame.hpp
@@ -33,6 +33,15 @@ namespace avtranscoder
33
class AvExport VideoFrameDesc
34
{
35
public:
36
+ VideoFrameDesc()
37
+ : m_width( 0 )
38
+ , m_height( 0 )
39
+ , m_displayAspectRatio()
40
+ , m_pixel()
41
+ , m_interlaced( false )
42
+ , m_topFieldFirst( false )
43
+ {};
44
+
45
void setWidth ( const size_t width ) { m_width = width; }
46
void setHeight( const size_t height ) { m_height = height; }
47
void setPixel ( const Pixel pixel ) { m_pixel = pixel; }
0 commit comments