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 e9dbd42 commit 2298b62Copy full SHA for 2298b62
src/AvTranscoder/stream/IInputStream.hpp
@@ -22,7 +22,7 @@ class AvExport IInputStream
22
virtual bool readNextPacket( CodedData& data ) = 0;
23
24
virtual size_t getStreamIndex() const = 0;
25
- virtual float getDuration() const = 0;
+ virtual float getDuration() const = 0; ///< Get duration of the stream, in seconds
26
virtual AVMediaType getStreamType() const = 0;
27
28
//@{
src/AvTranscoder/stream/InputStream.hpp
@@ -25,7 +25,6 @@ class AvExport InputStream : public IInputStream
bool readNextPacket( CodedData& data );
size_t getStreamIndex() const { return _streamIndex; }
- /// Get duration of the stream, in seconds
29
float getDuration() const;
30
AVMediaType getStreamType() const;
31
0 commit comments