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 2fdd2ed commit 6b7251dCopy full SHA for 6b7251d
src/AvTranscoder/Transcoder.cpp
@@ -14,7 +14,7 @@ Transcoder::Transcoder( const std::string& filename )
14
Transcoder::Transcoder( OutputFile& outputFile )
15
: _outputFile( outputFile )
16
{
17
- outputFile.setup();
+ _outputFile.setup();
18
}
19
20
void Transcoder::add( const std::string& filename, const size_t streamIndex )
src/AvTranscoder/exception.i renamed to src/AvTranscoder/avException.i
@@ -1,5 +1,7 @@
1
%include <std_except.i>
2
3
+%include <exception.i>
4
+
5
/*
6
All swig exception types:
7
SWIG_MemoryError
src/AvTranscoder/avTranscoder.i
@@ -5,7 +5,7 @@
%include "std_pair.i"
%include "std_map.i"
8
-%include "exception.i"
+%include "AvTranscoder/avException.i"
9
10
%{
11
#include <AvTranscoder/common.hpp>
0 commit comments