Skip to content

Commit f3989c0

Browse files
author
Clement Champetier
committed
AvInputVideo / Audio: add documentation for attributes
1 parent abe853e commit f3989c0

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

src/AvTranscoder/essenceStream/AvInputAudio.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ class AvExport AvInputAudio : public IInputEssence
2525
private:
2626
bool decodeNextFrame();
2727

28-
AvInputStream* _inputStream;
29-
AudioCodec _codec;
30-
AVFrame* _frame;
28+
AvInputStream* _inputStream; ///< Stream from which we read next frames
29+
AudioCodec _codec; ///< Audio decoder
30+
AVFrame* _frame; ///< Libav object to store decoded data
3131

32-
int _selectedStream;
32+
int _selectedStream; ///< Index of the selected stream in the input file
3333
};
3434

3535
}

src/AvTranscoder/essenceStream/AvInputVideo.hpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,12 @@ class AvExport AvInputVideo : public IInputEssence
2828
void setProfile( const Profile::ProfileDesc& desc );
2929

3030
private:
31-
AvInputStream* _inputStream;
32-
VideoCodec _codec;
33-
AVFrame* _frame;
3431

35-
int _selectedStream;
32+
AvInputStream* _inputStream; ///< Stream from which we read next frames
33+
VideoCodec _codec; ///< Video decoder
34+
AVFrame* _frame; ///< Libav object to store decoded data
35+
36+
int _selectedStream; ///< Index of the selected stream in the input file
3637
};
3738

3839
}

0 commit comments

Comments
 (0)