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 273ab20 commit af49961Copy full SHA for af49961
src/AvTranscoder/properties/util.cpp
@@ -27,7 +27,7 @@ template <>
27
void add(PropertyVector& propertyVector, const std::string& key, const float& value)
28
{
29
std::stringstream ss;
30
- if(value <= AV_NOPTS_VALUE || value >= AV_NOPTS_VALUE)
+ if(value <= AV_NOPTS_VALUE || value >= -(float)AV_NOPTS_VALUE)
31
ss << "N/A";
32
else
33
ss << value;
0 commit comments