[SCM] libav/experimental: add doxygen comments

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:59:36 UTC 2013


The following commit has been merged in the experimental branch:
commit 929baad070e5785ad8ae0cb21e7aea45b1ba5490
Author: Ivo van Poorten <ivop at euronet.nl>
Date:   Mon May 7 20:07:35 2007 +0000

    add doxygen comments
    
    Originally committed as revision 8930 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/s3tc.h b/libavcodec/s3tc.h
index ed385ae..b980879 100644
--- a/libavcodec/s3tc.h
+++ b/libavcodec/s3tc.h
@@ -26,9 +26,25 @@
 #define FF_S3TC_DXT1    0x31545844
 #define FF_S3TC_DXT3    0x33545844
 
+/**
+ * Decode DXT1 encoded data to RGB32
+ * @param *src source buffer, has to be aligned on a 4-byte boundary
+ * @param *dst destination buffer
+ * @param w width of output image
+ * @param h height of output image
+ * @param stride line size of output image
+ */
 void ff_decode_dxt1(const uint8_t *src, uint8_t *dst,
                     const unsigned int w, const unsigned int h,
                     const unsigned int stride);
+/**
+ * Decode DXT3 encoded data to RGB32
+ * @param *src source buffer, has to be aligned on a 4-byte boundary
+ * @param *dst destination buffer
+ * @param w width of output image
+ * @param h height of output image
+ * @param stride line size of output image
+ */
 void ff_decode_dxt3(const uint8_t *src, uint8_t *dst,
                     const unsigned int w, const unsigned int h,
                     const unsigned int stride);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list