diff options
author | Philip Langdale <philipl@overt.org> | 2011-03-14 22:14:23 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-03-17 13:02:23 +0100 |
commit | 969eb21ba21f0ed7154dd2a2fc754ef159df94a2 (patch) | |
tree | ba7426cf8a2ba5d7253dd179d31baa09102e271c /libavcodec/crystalhd.c | |
parent | c5dcb3d493a6bb73efeb8bfae24f5cc31908201f (diff) | |
download | ffmpeg-969eb21ba21f0ed7154dd2a2fc754ef159df94a2.tar.gz |
CrystalHD: Use doxygen compatible comments where relevant.
Signed-off-by: Philip Langdale <philipl@overt.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/crystalhd.c')
-rw-r--r-- | libavcodec/crystalhd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/crystalhd.c b/libavcodec/crystalhd.c index 209a86d62b..a773b848df 100644 --- a/libavcodec/crystalhd.c +++ b/libavcodec/crystalhd.c @@ -87,13 +87,13 @@ #include "libavutil/imgutils.h" #include "libavutil/intreadwrite.h" -/* Timeout parameter passed to DtsProcOutput() in us */ +/** Timeout parameter passed to DtsProcOutput() in us */ #define OUTPUT_PROC_TIMEOUT 50 -/* Step between fake timestamps passed to hardware in units of 100ns */ +/** Step between fake timestamps passed to hardware in units of 100ns */ #define TIMESTAMP_UNIT 100000 -/* Initial value in us of the wait in decode() */ +/** Initial value in us of the wait in decode() */ #define BASE_WAIT 10000 -/* Increment in us to adjust wait in decode() */ +/** Increment in us to adjust wait in decode() */ #define WAIT_UNIT 1000 |