diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-14 16:31:11 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-18 02:55:13 +0200 |
commit | bca2651a320def7dbeb6ea4f35f67a7ed6b2da0f (patch) | |
tree | 17de826aab345a55890b2912d401946822eac529 /libavcodec | |
parent | aa8e3f0342d738c2f10d561dc9ab50c2add8dc14 (diff) | |
download | ffmpeg-bca2651a320def7dbeb6ea4f35f67a7ed6b2da0f.tar.gz |
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>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/pthread_frame.c | 6 |
1 files 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, }; |