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.
This commit is contained in:
Marvin Scholz 2022-09-15 03:41:32 +02:00 committed by Anton Khirnov
parent 99f6d0bdde
commit 2c59038208

View File

@ -1499,7 +1499,7 @@ typedef struct AVCodecContext {
* libavcodec will behave as if this field was always set to 1. * libavcodec will behave as if this field was always set to 1.
* Callers that want to be forward compatible with future libavcodec * Callers that want to be forward compatible with future libavcodec
* versions should wrap access to this field in * versions should wrap access to this field in
* #if LIBAVCODEC_VERSION_MAJOR < 60 * `#if LIBAVCODEC_VERSION_MAJOR < 60`
*/ */
attribute_deprecated attribute_deprecated
int thread_safe_callbacks; int thread_safe_callbacks;