Skip to content

Commit 1c78636

Browse files
author
Clement Champetier
committed
Generators: add documentation for attributes
1 parent 01c9b19 commit 1c78636

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/AvTranscoder/essenceStream/GeneratorAudio.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ class AvExport GeneratorAudio : public IInputEssence
2424
bool readNextFrame( Frame& frameBuffer, const size_t subStreamIndex );
2525

2626
private:
27-
const AudioCodec* _codec;
28-
Frame* _inputFrame;
27+
const AudioCodec* _codec; ///< Has link (no ownership)
28+
Frame* _inputFrame; ///< Has link (no ownership)
2929
AudioFrameDesc _frameDesc;
3030
};
3131

src/AvTranscoder/essenceStream/GeneratorVideo.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ class AvExport GeneratorVideo : public IInputEssence
2525
bool readNextFrame( Frame& frameBuffer, const size_t subStreamIndex );
2626

2727
private:
28-
const VideoCodec* _codec;
29-
Frame* _inputFrame;
28+
const VideoCodec* _codec; ///< Has link (no ownership)
29+
Frame* _inputFrame; ///< Has link (no ownership)
3030
VideoFrameDesc _videoFrameDesc;
3131

3232
size_t _numberOfView;

0 commit comments

Comments
 (0)