FFmpeg
Macros | Functions
texturedsp.c File Reference
#include <stddef.h>
#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/libm.h"
#include "texturedsp.h"

Go to the source code of this file.

Macros

#define RGBA(r, g, b, a)
 

Functions

static av_always_inline void extract_color (uint32_t colors[4], uint16_t color0, uint16_t color1, int dxtn, int alpha)
 
static void dxt1_block_internal (uint8_t *dst, ptrdiff_t stride, const uint8_t *block, uint8_t alpha)
 
static int dxt1_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a DXT1 texture and store the resulting RGBA pixels in 'dst'. More...
 
static int dxt1a_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a DXT1 with 1-bit alpha texture and store the resulting RGBA pixels in 'dst'. More...
 
static void dxt3_block_internal (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 
static av_always_inline void premult2straight (uint8_t *src)
 Convert a premultiplied alpha pixel to a straight alpha pixel. More...
 
static int dxt2_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a DXT2 texture and store the resulting RGBA pixels in 'dst'. More...
 
static int dxt3_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a DXT3 texture and store the resulting RGBA pixels in 'dst'. More...
 
static void decompress_indices (uint8_t *dst, const uint8_t *src)
 Decompress a BC 16x3 index block stored as h g f e d c b a p o n m l k j i. More...
 
static void dxt5_block_internal (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 
static int dxt4_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a DXT4 texture and store the resulting RGBA pixels in 'dst'. More...
 
static int dxt5_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a DXT5 texture and store the resulting RGBA pixels in 'dst'. More...
 
static av_always_inline void ycocg2rgba (uint8_t *src, int scaled)
 Convert a YCoCg buffer to RGBA. More...
 
static int dxt5y_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a DXT5 texture with classic YCoCg and store the resulting RGBA pixels in 'dst'. More...
 
static int dxt5ys_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a DXT5 texture with scaled YCoCg and store the resulting RGBA pixels in 'dst'. More...
 
static void rgtc_block_internal (uint8_t *dst, ptrdiff_t stride, const uint8_t *block, const int *color_tab, int mono, int offset, int pix_size)
 
static void rgtc1_block_internal (uint8_t *dst, ptrdiff_t stride, const uint8_t *block, int sign, int mono, int offset, int pix_size)
 
static int rgtc1s_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a RGRC1 texture with signed components and store the resulting RGBA pixels in 'dst'. More...
 
static int rgtc1u_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a RGRC1 texture with unsigned components and store the resulting RGBA pixels in 'dst'. More...
 
static int rgtc1u_alpha_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a RGTC1 texture with unsigned components and overwrite the alpha component in 'dst' (RGBA data). More...
 
static int rgtc1u_gray_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a RGTC1 texture with unsigned components to Gray 8. More...
 
static void rgtc2_block_internal (uint8_t *dst, ptrdiff_t stride, const uint8_t *block, int sign)
 
static int rgtc2s_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a RGRC2 texture with signed components and store the resulting RGBA pixels in 'dst'. More...
 
static int rgtc2u_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a RGRC2 texture with unsigned components and store the resulting RGBA pixels in 'dst'. More...
 
static int dxn3dc_block (uint8_t *dst, ptrdiff_t stride, const uint8_t *block)
 Decompress one block of a 3Dc texture with unsigned components and store the resulting RGBA pixels in 'dst'. More...
 
av_cold void ff_texturedsp_init (TextureDSPContext *c)
 

Macro Definition Documentation

◆ RGBA

#define RGBA (   r,
  g,
  b,
  a 
)
Value:
(((uint8_t)(r) << 0) | \
((uint8_t)(g) << 8) | \
((uint8_t)(b) << 16) | \
((unsigned)(uint8_t)(a) << 24))

Definition at line 35 of file texturedsp.c.

Function Documentation

◆ extract_color()

static av_always_inline void extract_color ( uint32_t  colors[4],
uint16_t  color0,
uint16_t  color1,
int  dxtn,
int  alpha 
)
static

Definition at line 40 of file texturedsp.c.

Referenced by dxt1_block_internal(), dxt3_block_internal(), and dxt5_block_internal().

◆ dxt1_block_internal()

static void dxt1_block_internal ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block,
uint8_t  alpha 
)
inlinestatic

Definition at line 85 of file texturedsp.c.

Referenced by dxt1_block(), and dxt1a_block().

◆ dxt1_block()

static int dxt1_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a DXT1 texture and store the resulting RGBA pixels in 'dst'.

Alpha component is fully opaque.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 115 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ dxt1a_block()

static int dxt1a_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a DXT1 with 1-bit alpha texture and store the resulting RGBA pixels in 'dst'.

Alpha is either fully opaque or fully transparent.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 132 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ dxt3_block_internal()

static void dxt3_block_internal ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
inlinestatic

Definition at line 139 of file texturedsp.c.

Referenced by dxt2_block(), and dxt3_block().

◆ premult2straight()

static av_always_inline void premult2straight ( uint8_t src)
static

Convert a premultiplied alpha pixel to a straight alpha pixel.

Definition at line 171 of file texturedsp.c.

Referenced by dxt2_block(), and dxt4_block().

◆ dxt2_block()

static int dxt2_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a DXT2 texture and store the resulting RGBA pixels in 'dst'.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 192 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ dxt3_block()

static int dxt3_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a DXT3 texture and store the resulting RGBA pixels in 'dst'.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 216 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ decompress_indices()

static void decompress_indices ( uint8_t dst,
const uint8_t src 
)
static

Decompress a BC 16x3 index block stored as h g f e d c b a p o n m l k j i.

Bits packed as | h | g | f | e | d | c | b | a | // Entry |765 432 107 654 321 076 543 210| // Bit |0000000000111111111112222222222| // Byte

into 16 8-bit indices.

Definition at line 237 of file texturedsp.c.

Referenced by dxt5_block_internal(), and rgtc_block_internal().

◆ dxt5_block_internal()

static void dxt5_block_internal ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
inlinestatic

Definition at line 253 of file texturedsp.c.

Referenced by dxt4_block(), dxt5_block(), dxt5y_block(), and dxt5ys_block().

◆ dxt4_block()

static int dxt4_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a DXT4 texture and store the resulting RGBA pixels in 'dst'.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 311 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ dxt5_block()

static int dxt5_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a DXT5 texture and store the resulting RGBA pixels in 'dst'.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 335 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ ycocg2rgba()

static av_always_inline void ycocg2rgba ( uint8_t src,
int  scaled 
)
static

Convert a YCoCg buffer to RGBA.

Parameters
srcinput buffer.
scaledvariant with scaled chroma components and opaque alpha.

Definition at line 348 of file texturedsp.c.

Referenced by dxt5y_block(), and dxt5ys_block().

◆ dxt5y_block()

static int dxt5y_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a DXT5 texture with classic YCoCg and store the resulting RGBA pixels in 'dst'.

Alpha component is fully opaque.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 375 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ dxt5ys_block()

static int dxt5ys_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a DXT5 texture with scaled YCoCg and store the resulting RGBA pixels in 'dst'.

Alpha component is fully opaque.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 399 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ rgtc_block_internal()

static void rgtc_block_internal ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block,
const int color_tab,
int  mono,
int  offset,
int  pix_size 
)
inlinestatic

Definition at line 414 of file texturedsp.c.

Referenced by rgtc1_block_internal().

◆ rgtc1_block_internal()

static void rgtc1_block_internal ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block,
int  sign,
int  mono,
int  offset,
int  pix_size 
)
inlinestatic

◆ rgtc1s_block()

static int rgtc1s_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a RGRC1 texture with signed components and store the resulting RGBA pixels in 'dst'.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 493 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ rgtc1u_block()

static int rgtc1u_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a RGRC1 texture with unsigned components and store the resulting RGBA pixels in 'dst'.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 509 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ rgtc1u_alpha_block()

static int rgtc1u_alpha_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a RGTC1 texture with unsigned components and overwrite the alpha component in 'dst' (RGBA data).

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 525 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ rgtc1u_gray_block()

static int rgtc1u_gray_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a RGTC1 texture with unsigned components to Gray 8.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 541 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ rgtc2_block_internal()

static void rgtc2_block_internal ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block,
int  sign 
)
inlinestatic

Definition at line 548 of file texturedsp.c.

Referenced by dxn3dc_block(), rgtc2s_block(), and rgtc2u_block().

◆ rgtc2s_block()

static int rgtc2s_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a RGRC2 texture with signed components and store the resulting RGBA pixels in 'dst'.

Alpha is fully opaque.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 589 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ rgtc2u_block()

static int rgtc2u_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a RGRC2 texture with unsigned components and store the resulting RGBA pixels in 'dst'.

Alpha is fully opaque.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 605 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ dxn3dc_block()

static int dxn3dc_block ( uint8_t dst,
ptrdiff_t  stride,
const uint8_t block 
)
static

Decompress one block of a 3Dc texture with unsigned components and store the resulting RGBA pixels in 'dst'.

Alpha is fully opaque.

Parameters
dstoutput buffer.
stridescanline in bytes.
blockblock to decompress.
Returns
how much texture data has been consumed.

Definition at line 621 of file texturedsp.c.

Referenced by ff_texturedsp_init().

◆ ff_texturedsp_init()

av_cold void ff_texturedsp_init ( TextureDSPContext c)

Definition at line 637 of file texturedsp.c.

Referenced by dds_decode(), dxv_init(), hap_init(), and txd_decode_frame().

r
const char * r
Definition: vf_curves.c:114
b
#define b
Definition: input.c:41
g
const char * g
Definition: vf_curves.c:115
a
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
Definition: undefined.txt:41
uint8_t
uint8_t
Definition: audio_convert.c:194