diff options
author | Diego Biurrun | 2011-08-05 13:15:04 +0200 |
---|---|---|
committer | Diego Biurrun | 2011-08-26 18:34:28 +0200 |
commit | 0249478756091ab62f2d68f4d25f6b095f6723d8 (patch) | |
tree | f3128133ceb7ccaf2b4bb7d6093f7dffdb003699 /libavcodec/avcodec.h | |
parent | 0138a8dead3d4874aa9c6f60f64423586c69f4d4 (diff) |
doxygen: fix wrong comment syntax, //< vs. ///<
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c0dcae5094..b47d41ee78 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2840,8 +2840,8 @@ typedef struct AVCodecContext { * - decoding: Set by user, otherwise the default is used. */ int thread_type; -#define FF_THREAD_FRAME 1 //< Decode more than one frame at once -#define FF_THREAD_SLICE 2 //< Decode more than one part of a single frame at once +#define FF_THREAD_FRAME 1 ///< Decode more than one frame at once +#define FF_THREAD_SLICE 2 ///< Decode more than one part of a single frame at once /** * Which multithreading methods are in use by the codec. |