From bca2651a320def7dbeb6ea4f35f67a7ed6b2da0f Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Thu, 14 Sep 2023 16:31:11 +0200 Subject: [PATCH] avcodec/pthread_frame: Fix doxygen comments The '<' in ///< says that the comment pertains to the previous item on the same line as the ///<. Signed-off-by: Andreas Rheinhardt --- libavcodec/pthread_frame.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/pthread_frame.c b/libavcodec/pthread_frame.c index 58a9101888..4973d64550 100644 --- a/libavcodec/pthread_frame.c +++ b/libavcodec/pthread_frame.c @@ -51,11 +51,11 @@ #include "libavutil/thread.h" enum { - ///< Set when the thread is awaiting a packet. + /// Set when the thread is awaiting a packet. STATE_INPUT_READY, - ///< Set before the codec has called ff_thread_finish_setup(). + /// Set before the codec has called ff_thread_finish_setup(). STATE_SETTING_UP, - ///< Set after the codec has called ff_thread_finish_setup(). + /// Set after the codec has called ff_thread_finish_setup(). STATE_SETUP_FINISHED, };