]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/rtjpeg.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / rtjpeg.c
index 07e4f02e675eddb0aa99bf8a0dc4eb5ae71f496e..e03282b4125b607a87c377cba19b4b9183711ad4 100644 (file)
@@ -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);}