File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -46,12 +46,16 @@ class AvExport IInputStream
46
46
virtual DataCodec& getDataCodec () = 0;
47
47
// @}
48
48
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
+ */
52
55
virtual void activate ( const bool activate = true ) = 0;
53
56
virtual bool isActivated () const = 0;
54
57
virtual void clearBuffering () = 0;
58
+ // @}
55
59
};
56
60
57
61
}
Original file line number Diff line number Diff line change @@ -31,16 +31,10 @@ class AvExport InputStream : public IInputStream
31
31
AudioCodec& getAudioCodec ();
32
32
DataCodec& getDataCodec ();
33
33
34
- // @{
35
- /* *
36
- * @brief Functions about buffering
37
- * @see IInputStream methods
38
- */
39
34
void activate ( const bool activate = true ){ _isActivated = activate; };
40
35
bool isActivated () const { return _isActivated; };
41
36
void addPacket ( const AVPacket& packet );
42
37
void clearBuffering ();
43
- // @}
44
38
45
39
private:
46
40
InputFile* _inputFile; // /< Has link (no ownership)
You can’t perform that action at this time.
0 commit comments