Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Scholz <epirat07@gmail.com>2022-09-15 03:21:39 +0300
committerAnton Khirnov <anton@khirnov.net>2022-10-17 10:51:47 +0300
commitea5884e2e38d03c9ddcb96492bcb68bd8850ce13 (patch)
tree79804268e3367bcf21b0f5107218380a9b9db444 /libavcodec/codec_par.h
parent4d66e8c12e9540d5fa5131b89bb62bb6e90e7631 (diff)
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.
Diffstat (limited to 'libavcodec/codec_par.h')
-rw-r--r--libavcodec/codec_par.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/codec_par.h b/libavcodec/codec_par.h
index 7660791a12..fa132814b1 100644
--- a/libavcodec/codec_par.h
+++ b/libavcodec/codec_par.h
@@ -37,10 +37,10 @@
enum AVFieldOrder {
AV_FIELD_UNKNOWN,
AV_FIELD_PROGRESSIVE,
- AV_FIELD_TT, //< Top coded_first, top displayed first
- AV_FIELD_BB, //< Bottom 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_TT, ///< Top coded_first, top displayed first
+ AV_FIELD_BB, ///< Bottom coded first, bottom displayed first
+ AV_FIELD_TB, ///< Top coded first, bottom displayed first
+ AV_FIELD_BT, ///< Bottom coded first, top displayed first
};
/**