FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros
pixels.h File Reference
#include <stddef.h>
#include <stdint.h>

Go to the source code of this file.

Macros

#define CALL_2X_PIXELS_MACRO(STATIC, a, b, n)
 
#define CALL_2X_PIXELS(a, b, n)   CALL_2X_PIXELS_MACRO(static, a, b, n)
 
#define CALL_2X_PIXELS_EXPORT(a, b, n)   CALL_2X_PIXELS_MACRO(, a, b, n)
 

Macro Definition Documentation

#define CALL_2X_PIXELS_MACRO (   STATIC,
  a,
  b,
  n 
)
Value:
STATIC void a(uint8_t *block, const uint8_t *pixels, \
ptrdiff_t line_size, int h) \
{ \
b(block, pixels, line_size, h); \
b(block + n, pixels + n, line_size, h); \
}
const char * b
Definition: vf_curves.c:109
static int16_t block[64]
Definition: dct.c:113
uint8_t
int n
Definition: avisynth_c.h:547
int pixels
Definition: avisynth_c.h:298

Definition at line 26 of file pixels.h.

#define CALL_2X_PIXELS (   a,
  b,
  n 
)    CALL_2X_PIXELS_MACRO(static, a, b, n)

Definition at line 34 of file pixels.h.

#define CALL_2X_PIXELS_EXPORT (   a,
  b,
  n 
)    CALL_2X_PIXELS_MACRO(, a, b, n)

Definition at line 35 of file pixels.h.