Skip to content

Commit 3c28458

Browse files
clean build under Linux and remove overloading constructor
1 parent 2537b6d commit 3c28458

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/AvTranscoder/InputStream.hpp

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,6 @@ class AvExport InputStream
3131
init( inputStream.m_formatContext->filename );
3232
}
3333

34-
InputStream( InputStream& inputStream )
35-
: m_formatContext( NULL )
36-
, m_streamIndex( inputStream.m_streamIndex )
37-
{
38-
init( inputStream.m_formatContext->filename );
39-
}
40-
4134
size_t getStreamIndex() const { return m_streamIndex; }
4235

4336
bool readNextPacket( DataStream& data ) const;
@@ -54,7 +47,7 @@ class AvExport InputStream
5447

5548
private:
5649
AVFormatContext* m_formatContext;
57-
const size_t m_streamIndex;
50+
size_t m_streamIndex;
5851
};
5952

6053
}

0 commit comments

Comments
 (0)