Skip to content

Commit 5adc732

Browse files
author
Clement Champetier
committed
IInputStream: move doc of buffering methods to based class
1 parent 38b5d8b commit 5adc732

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

src/AvTranscoder/stream/IInputStream.hpp

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,16 @@ class AvExport IInputStream
4646
virtual DataCodec& getDataCodec() = 0;
4747
//@}
4848

49-
/**
50-
* @brief Activate the stream will buffered its data when read packets.
51-
**/
49+
//@{
50+
/**
51+
* @brief Functions about buffering
52+
* Activate the stream will buffered its data when read packets.
53+
* @see IInputStream methods
54+
*/
5255
virtual void activate( const bool activate = true ) = 0;
5356
virtual bool isActivated() const = 0;
5457
virtual void clearBuffering() = 0;
58+
//@}
5559
};
5660

5761
}

src/AvTranscoder/stream/InputStream.hpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,10 @@ class AvExport InputStream : public IInputStream
3131
AudioCodec& getAudioCodec();
3232
DataCodec& getDataCodec();
3333

34-
//@{
35-
/**
36-
* @brief Functions about buffering
37-
* @see IInputStream methods
38-
*/
3934
void activate( const bool activate = true ){ _isActivated = activate; };
4035
bool isActivated() const { return _isActivated; };
4136
void addPacket( const AVPacket& packet );
4237
void clearBuffering();
43-
//@}
4438

4539
private:
4640
InputFile* _inputFile; ///< Has link (no ownership)

0 commit comments

Comments
 (0)