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 2537b6d commit 3c28458Copy full SHA for 3c28458
src/AvTranscoder/InputStream.hpp
@@ -31,13 +31,6 @@ class AvExport InputStream
31
init( inputStream.m_formatContext->filename );
32
}
33
34
- InputStream( InputStream& inputStream )
35
- : m_formatContext( NULL )
36
- , m_streamIndex( inputStream.m_streamIndex )
37
- {
38
- init( inputStream.m_formatContext->filename );
39
- }
40
-
41
size_t getStreamIndex() const { return m_streamIndex; }
42
43
bool readNextPacket( DataStream& data ) const;
@@ -54,7 +47,7 @@ class AvExport InputStream
54
47
55
48
private:
56
49
AVFormatContext* m_formatContext;
57
- const size_t m_streamIndex;
50
+ size_t m_streamIndex;
58
51
};
59
52
60
53
0 commit comments