Skip to content

Commit 9872976

Browse files
author
Clement Champetier
committed
AvInputStream: add documentation for attributes
1 parent 41e4cec commit 9872976

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/AvTranscoder/codedStream/AvInputStream.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ class AvExport AvInputStream : public IInputStream
4242
AVStream* getAVStream() const;
4343

4444
private:
45-
InputFile* _inputFile;
46-
std::vector<CodedData> _streamCache;
47-
45+
InputFile* _inputFile; ///< Has link (no ownership)
4846
ICodec* _codec; ///< Has ownership
4947

50-
size_t _streamIndex;
51-
bool _bufferized;
48+
std::vector<CodedData> _streamCache;
49+
50+
size_t _streamIndex; ///< Index of the stream in the input file
51+
bool _bufferized; ///< If the stream is bufferized
5252
};
5353

5454
}

0 commit comments

Comments
 (0)