diff options
author | Marvin Scholz <epirat07@gmail.com> | 2022-09-24 22:06:50 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-10-17 09:55:19 +0200 |
commit | f824388c335ab928021b1b4a0209c1946fd53207 (patch) | |
tree | dd4d5a731990f95cfb347d441db5e59609929da0 | |
parent | e3c5b8c610a8d55cf3921926434e6c7b13cda210 (diff) | |
download | ffmpeg-f824388c335ab928021b1b4a0209c1946fd53207.tar.gz |
avutil/channel_layout: Use inline code for Doxy
This avoids Doxygen to interpret <i> and others that look like XML tags
as those, fixing a warning about unknown tags.
-rw-r--r-- | libavutil/channel_layout.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/channel_layout.h b/libavutil/channel_layout.h index 29b8500e04..f023e144ec 100644 --- a/libavutil/channel_layout.h +++ b/libavutil/channel_layout.h @@ -90,9 +90,9 @@ enum AVChannel { * Range of channels between AV_CHAN_AMBISONIC_BASE and * AV_CHAN_AMBISONIC_END represent Ambisonic components using the ACN system. * - * Given a channel id <i> between AV_CHAN_AMBISONIC_BASE and - * AV_CHAN_AMBISONIC_END (inclusive), the ACN index of the channel <n> is - * <n> = <i> - AV_CHAN_AMBISONIC_BASE. + * Given a channel id `<i>` between AV_CHAN_AMBISONIC_BASE and + * AV_CHAN_AMBISONIC_END (inclusive), the ACN index of the channel `<n>` is + * `<n> = <i> - AV_CHAN_AMBISONIC_BASE`. * * @note these values are only used for AV_CHANNEL_ORDER_CUSTOM channel * orderings, the AV_CHANNEL_ORDER_AMBISONIC ordering orders the channels |