Skip to content

Commit 6b7251d

Browse files
rename exception file
1 parent 2fdd2ed commit 6b7251d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/AvTranscoder/Transcoder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Transcoder::Transcoder( const std::string& filename )
1414
Transcoder::Transcoder( OutputFile& outputFile )
1515
: _outputFile( outputFile )
1616
{
17-
outputFile.setup();
17+
_outputFile.setup();
1818
}
1919

2020
void Transcoder::add( const std::string& filename, const size_t streamIndex )

src/AvTranscoder/exception.i renamed to src/AvTranscoder/avException.i

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
%include <std_except.i>
22

3+
%include <exception.i>
4+
35
/*
46
All swig exception types:
57
SWIG_MemoryError

src/AvTranscoder/avTranscoder.i

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
%include "std_pair.i"
66
%include "std_map.i"
77

8-
%include "exception.i"
8+
%include "AvTranscoder/avException.i"
99

1010
%{
1111
#include <AvTranscoder/common.hpp>

0 commit comments

Comments
 (0)