Skip to content

Commit 2298b62

Browse files
author
Clement Champetier
committed
InputStream: move doc to based class
1 parent e9dbd42 commit 2298b62

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/AvTranscoder/stream/IInputStream.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class AvExport IInputStream
2222
virtual bool readNextPacket( CodedData& data ) = 0;
2323

2424
virtual size_t getStreamIndex() const = 0;
25-
virtual float getDuration() const = 0;
25+
virtual float getDuration() const = 0; ///< Get duration of the stream, in seconds
2626
virtual AVMediaType getStreamType() const = 0;
2727

2828
//@{

src/AvTranscoder/stream/InputStream.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ class AvExport InputStream : public IInputStream
2525
bool readNextPacket( CodedData& data );
2626

2727
size_t getStreamIndex() const { return _streamIndex; }
28-
/// Get duration of the stream, in seconds
2928
float getDuration() const;
3029
AVMediaType getStreamType() const;
3130

0 commit comments

Comments
 (0)