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 4108338 commit cdb02c7Copy full SHA for cdb02c7
src/AvTranscoder/Option.hpp
@@ -47,6 +47,8 @@ class Option
47
std::string getHelp() const { return std::string( m_avOption.help ? m_avOption.help : "" ); }
48
std::string getUnit() const { return std::string( m_avOption.unit ? m_avOption.unit : "" ); }
49
int getOffset() const { return m_avOption.offset; }
50
+ double getMin() const { return m_avOption.min; }
51
+ double getMax() const { return m_avOption.max; }
52
53
// flags
54
int getFlags() const { return m_avOption.flags; }
0 commit comments