Commit 4d553ba2 authored by ivo's avatar ivo

add doxygen comments


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8930 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a6f76ba0
...@@ -26,9 +26,25 @@ ...@@ -26,9 +26,25 @@
#define FF_S3TC_DXT1 0x31545844 #define FF_S3TC_DXT1 0x31545844
#define FF_S3TC_DXT3 0x33545844 #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, void ff_decode_dxt1(const uint8_t *src, uint8_t *dst,
const unsigned int w, const unsigned int h, const unsigned int w, const unsigned int h,
const unsigned int stride); 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, void ff_decode_dxt3(const uint8_t *src, uint8_t *dst,
const unsigned int w, const unsigned int h, const unsigned int w, const unsigned int h,
const unsigned int stride); const unsigned int stride);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment