summaryrefslogtreecommitdiff
path: root/libavcodec/rtjpeg.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-10-30 18:27:33 +0100
committerDiego Biurrun <diego@biurrun.de>2011-12-05 13:06:58 +0100
commitc68fafe0d2bdf3d4943a3602c52b0a7c83be8171 (patch)
tree23bfd8a037b362354f1638e63e2f86e9c355f004 /libavcodec/rtjpeg.c
parent714cd7e758ef8c579a3f98b364d8b3d746ee289b (diff)
doxygen: eliminate Qt-style doxygen syntax
Diffstat (limited to 'libavcodec/rtjpeg.c')
-rw-r--r--libavcodec/rtjpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rtjpeg.c b/libavcodec/rtjpeg.c
index 35ab090cb2..2c5ef0a8dd 100644
--- a/libavcodec/rtjpeg.c
+++ b/libavcodec/rtjpeg.c
@@ -27,7 +27,7 @@
i = scan[coeff--]; \
block[i] = (c) * quant[i];
-//! aligns the bitstream to the give power of two
+/// aligns the bitstream to the given power of two
#define ALIGN(a) \
n = (-get_bits_count(gb)) & (a - 1); \
if (n) {skip_bits(gb, n);}