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 <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2023-09-14 16:31:11 +02:00
parent aa8e3f0342
commit bca2651a32

View File

@ -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,
};