File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
src/AvTranscoder/essenceStream Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ AvInputVideo::AvInputVideo( AvInputStream& inputStream )
21
21
: IInputEssence()
22
22
, _inputStream ( &inputStream )
23
23
, _frame ( NULL )
24
- , _verbose( false )
25
24
{
26
25
}
27
26
@@ -152,8 +151,7 @@ void AvInputVideo::setProfile( const ProfileLoader::Profile& profile )
152
151
}
153
152
catch ( std::exception& e )
154
153
{
155
- if ( _verbose )
156
- std::cout << " [InputVideo] warning - can't set option " << (*it).first << " to " << (*it).second << " : " << e.what () << std::endl;
154
+ std::cout << " [InputVideo] warning - can't set option " << (*it).first << " to " << (*it).second << " : " << e.what () << std::endl;
157
155
}
158
156
}
159
157
}
Original file line number Diff line number Diff line change @@ -25,16 +25,13 @@ class AvExport AvInputVideo : public IInputEssence
25
25
void flushDecoder ();
26
26
27
27
void setProfile ( const ProfileLoader::Profile& profile );
28
- void setVerbose ( bool verbose = true ) { _verbose = verbose; }
29
28
30
29
private:
31
30
bool decodeNextFrame ();
32
31
33
32
private:
34
33
AvInputStream* _inputStream; // /< Stream from which we read next frames (no ownership, has link)
35
34
AVFrame* _frame; // /< Libav object to store decoded data (has ownership)
36
-
37
- bool _verbose;
38
35
};
39
36
40
37
}
You can’t perform that action at this time.
0 commit comments