diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-10-30 18:27:33 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-05 13:06:58 +0100 |
commit | c68fafe0d2bdf3d4943a3602c52b0a7c83be8171 (patch) | |
tree | 23bfd8a037b362354f1638e63e2f86e9c355f004 /libpostproc | |
parent | 714cd7e758ef8c579a3f98b364d8b3d746ee289b (diff) | |
download | ffmpeg-c68fafe0d2bdf3d4943a3602c52b0a7c83be8171.tar.gz |
doxygen: eliminate Qt-style doxygen syntax
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index fb51d942e5..f87721711c 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -644,7 +644,7 @@ static inline void postProcess(const uint8_t src[], int srcStride, uint8_t dst[] #endif postProcess_C(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c); #endif -#else //CONFIG_RUNTIME_CPUDETECT +#else /* CONFIG_RUNTIME_CPUDETECT */ #if HAVE_MMX2 postProcess_MMX2(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c); #elif HAVE_AMD3DNOW @@ -656,7 +656,7 @@ static inline void postProcess(const uint8_t src[], int srcStride, uint8_t dst[] #else postProcess_C(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c); #endif -#endif //!CONFIG_RUNTIME_CPUDETECT +#endif /* !CONFIG_RUNTIME_CPUDETECT */ } //static void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height, |