diff options
author | Marvin Scholz <epirat07@gmail.com> | 2022-09-15 03:41:32 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-10-17 09:51:47 +0200 |
commit | 2c59038208c1945bb4c368e381e2a74b35bc72bc (patch) | |
tree | e88bf0c68c37844e477044e3aaeb9968b92949d8 /libavcodec/avcodec.h | |
parent | 99f6d0bdde31e96db745e1170e4cf60cad24ecd7 (diff) | |
download | ffmpeg-2c59038208c1945bb4c368e381e2a74b35bc72bc.tar.gz |
avcodec/avcodec: Escape Doxygen reference
The # is interpreted as explicit reference request by Doxygen
which is not desired here, use markdown inline code to avoid
that.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index decf57e424..3edd8e2636 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1499,7 +1499,7 @@ typedef struct AVCodecContext { * libavcodec will behave as if this field was always set to 1. * Callers that want to be forward compatible with future libavcodec * versions should wrap access to this field in - * #if LIBAVCODEC_VERSION_MAJOR < 60 + * `#if LIBAVCODEC_VERSION_MAJOR < 60` */ attribute_deprecated int thread_safe_callbacks; |