From 2c59038208c1945bb4c368e381e2a74b35bc72bc Mon Sep 17 00:00:00 2001 From: Marvin Scholz Date: Thu, 15 Sep 2022 03:41:32 +0200 Subject: [PATCH] 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. --- libavcodec/avcodec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;