#include <stdint.h>
Go to the source code of this file.
Defines | |
#define | FF_S3TC_DXT1 0x31545844 |
#define | FF_S3TC_DXT3 0x33545844 |
Functions | |
void | ff_decode_dxt1 (const uint8_t *src, uint8_t *dst, const unsigned int w, const unsigned int h, const unsigned int stride) |
Decode DXT1 encoded data to RGB32. | |
void | ff_decode_dxt3 (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. |
#define FF_S3TC_DXT1 0x31545844 |
#define FF_S3TC_DXT3 0x33545844 |
void ff_decode_dxt1 | ( | const uint8_t * | src, | |
uint8_t * | dst, | |||
const unsigned int | w, | |||
const unsigned int | h, | |||
const unsigned int | stride | |||
) |
Decode DXT1 encoded data to RGB32.
src | source buffer, has to be aligned on a 4-byte boundary | |
dst | destination buffer | |
w | width of output image | |
h | height of output image | |
stride | line size of output image |
Definition at line 77 of file s3tc.c.
Referenced by txd_decode_frame().
void ff_decode_dxt3 | ( | 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.
src | source buffer, has to be aligned on a 4-byte boundary | |
dst | destination buffer | |
w | width of output image | |
h | height of output image | |
stride | line size of output image |
Definition at line 88 of file s3tc.c.
Referenced by txd_decode_frame().