aboutsummaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorDiego Biurrun2011-08-05 13:15:04 +0200
committerDiego Biurrun2011-08-26 18:34:28 +0200
commit0249478756091ab62f2d68f4d25f6b095f6723d8 (patch)
treef3128133ceb7ccaf2b4bb7d6093f7dffdb003699 /libavcodec/avcodec.h
parent0138a8dead3d4874aa9c6f60f64423586c69f4d4 (diff)
doxygen: fix wrong comment syntax, //< vs. ///<
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h4
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.