1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

avcodec: Fix Doxygen trailing brief comments

The //< comment is not any magic comment supported by Doxygen,
instead use ///< to mark them as doc for the members.
This commit is contained in:
Marvin Scholz 2022-09-15 02:21:39 +02:00 committed by Anton Khirnov
parent 4d66e8c12e
commit ea5884e2e3
2 changed files with 8 additions and 8 deletions

View File

@ -2791,10 +2791,10 @@ int avcodec_get_hw_frames_parameters(AVCodecContext *avctx,
*/ */
enum AVPictureStructure { enum AVPictureStructure {
AV_PICTURE_STRUCTURE_UNKNOWN, //< unknown AV_PICTURE_STRUCTURE_UNKNOWN, ///< unknown
AV_PICTURE_STRUCTURE_TOP_FIELD, //< coded as top field AV_PICTURE_STRUCTURE_TOP_FIELD, ///< coded as top field
AV_PICTURE_STRUCTURE_BOTTOM_FIELD, //< coded as bottom field AV_PICTURE_STRUCTURE_BOTTOM_FIELD, ///< coded as bottom field
AV_PICTURE_STRUCTURE_FRAME, //< coded as frame AV_PICTURE_STRUCTURE_FRAME, ///< coded as frame
}; };
typedef struct AVCodecParserContext { typedef struct AVCodecParserContext {

View File

@ -37,10 +37,10 @@
enum AVFieldOrder { enum AVFieldOrder {
AV_FIELD_UNKNOWN, AV_FIELD_UNKNOWN,
AV_FIELD_PROGRESSIVE, AV_FIELD_PROGRESSIVE,
AV_FIELD_TT, //< Top coded_first, top displayed first AV_FIELD_TT, ///< Top coded_first, top displayed first
AV_FIELD_BB, //< Bottom coded first, bottom displayed first AV_FIELD_BB, ///< Bottom coded first, bottom displayed first
AV_FIELD_TB, //< Top coded first, bottom displayed first AV_FIELD_TB, ///< Top coded first, bottom displayed first
AV_FIELD_BT, //< Bottom coded first, top displayed first AV_FIELD_BT, ///< Bottom coded first, top displayed first
}; };
/** /**