FFmpeg
Data Structures | Macros | Typedefs | Enumerations | Functions | Variables
avisynth_c.h File Reference
#include "avs/config.h"
#include "avs/capi.h"
#include "avs/types.h"

Go to the source code of this file.

Data Structures

struct  AVS_VideoInfo
 
struct  AVS_VideoFrameBuffer
 
struct  AVS_VideoFrame
 
struct  AVS_Value
 
struct  AVS_FilterInfo
 

Macros

#define AVS_FRAME_ALIGN   FRAME_ALIGN
 

Typedefs

typedef struct AVS_Clip AVS_Clip
 
typedef struct AVS_ScriptEnvironment AVS_ScriptEnvironment
 
typedef AVS_Value args
 
typedef AVS_Value voiduser_data
 
typedef void(AVSC_CCAVS_ShutdownFunc) (void *user_data, AVS_ScriptEnvironment *env)
 

Enumerations

enum  { AVISYNTH_INTERFACE_VERSION = 6 }
 
enum  {
  AVS_SAMPLE_INT8 = 1<<0, AVS_SAMPLE_INT16 = 1<<1, AVS_SAMPLE_INT24 = 1<<2, AVS_SAMPLE_INT32 = 1<<3,
  AVS_SAMPLE_FLOAT = 1<<4
}
 
enum  {
  AVS_PLANAR_Y =1<<0, AVS_PLANAR_U =1<<1, AVS_PLANAR_V =1<<2, AVS_PLANAR_ALIGNED =1<<3,
  AVS_PLANAR_Y_ALIGNED =AVS_PLANAR_Y|AVS_PLANAR_ALIGNED, AVS_PLANAR_U_ALIGNED =AVS_PLANAR_U|AVS_PLANAR_ALIGNED, AVS_PLANAR_V_ALIGNED =AVS_PLANAR_V|AVS_PLANAR_ALIGNED, AVS_PLANAR_A =1<<4,
  AVS_PLANAR_R =1<<5, AVS_PLANAR_G =1<<6, AVS_PLANAR_B =1<<7, AVS_PLANAR_A_ALIGNED =AVS_PLANAR_A|AVS_PLANAR_ALIGNED,
  AVS_PLANAR_R_ALIGNED =AVS_PLANAR_R|AVS_PLANAR_ALIGNED, AVS_PLANAR_G_ALIGNED =AVS_PLANAR_G|AVS_PLANAR_ALIGNED, AVS_PLANAR_B_ALIGNED =AVS_PLANAR_B|AVS_PLANAR_ALIGNED
}
 
enum  {
  AVS_CS_YUVA = 1 << 27, AVS_CS_BGR = 1 << 28, AVS_CS_YUV = 1 << 29, AVS_CS_INTERLEAVED = 1 << 30,
  AVS_CS_PLANAR = 1 << 31, AVS_CS_SHIFT_SUB_WIDTH = 0, AVS_CS_SHIFT_SUB_HEIGHT = 8, AVS_CS_SHIFT_SAMPLE_BITS = 16,
  AVS_CS_SUB_WIDTH_MASK = 7 << AVS_CS_SHIFT_SUB_WIDTH, AVS_CS_SUB_WIDTH_1 = 3 << AVS_CS_SHIFT_SUB_WIDTH, AVS_CS_SUB_WIDTH_2 = 0 << AVS_CS_SHIFT_SUB_WIDTH, AVS_CS_SUB_WIDTH_4 = 1 << AVS_CS_SHIFT_SUB_WIDTH,
  AVS_CS_VPLANEFIRST = 1 << 3, AVS_CS_UPLANEFIRST = 1 << 4, AVS_CS_SUB_HEIGHT_MASK = 7 << AVS_CS_SHIFT_SUB_HEIGHT, AVS_CS_SUB_HEIGHT_1 = 3 << AVS_CS_SHIFT_SUB_HEIGHT,
  AVS_CS_SUB_HEIGHT_2 = 0 << AVS_CS_SHIFT_SUB_HEIGHT, AVS_CS_SUB_HEIGHT_4 = 1 << AVS_CS_SHIFT_SUB_HEIGHT, AVS_CS_SAMPLE_BITS_MASK = 7 << AVS_CS_SHIFT_SAMPLE_BITS, AVS_CS_SAMPLE_BITS_8 = 0 << AVS_CS_SHIFT_SAMPLE_BITS,
  AVS_CS_SAMPLE_BITS_10 = 5 << AVS_CS_SHIFT_SAMPLE_BITS, AVS_CS_SAMPLE_BITS_12 = 6 << AVS_CS_SHIFT_SAMPLE_BITS, AVS_CS_SAMPLE_BITS_14 = 7 << AVS_CS_SHIFT_SAMPLE_BITS, AVS_CS_SAMPLE_BITS_16 = 1 << AVS_CS_SHIFT_SAMPLE_BITS,
  AVS_CS_SAMPLE_BITS_32 = 2 << AVS_CS_SHIFT_SAMPLE_BITS, AVS_CS_PLANAR_MASK = AVS_CS_PLANAR | AVS_CS_INTERLEAVED | AVS_CS_YUV | AVS_CS_BGR | AVS_CS_YUVA | AVS_CS_SAMPLE_BITS_MASK | AVS_CS_SUB_HEIGHT_MASK | AVS_CS_SUB_WIDTH_MASK, AVS_CS_PLANAR_FILTER = ~(AVS_CS_VPLANEFIRST | AVS_CS_UPLANEFIRST), AVS_CS_RGB_TYPE = 1 << 0,
  AVS_CS_RGBA_TYPE = 1 << 1, AVS_CS_GENERIC_YUV420 = AVS_CS_PLANAR | AVS_CS_YUV | AVS_CS_VPLANEFIRST | AVS_CS_SUB_HEIGHT_2 | AVS_CS_SUB_WIDTH_2, AVS_CS_GENERIC_YUV422 = AVS_CS_PLANAR | AVS_CS_YUV | AVS_CS_VPLANEFIRST | AVS_CS_SUB_HEIGHT_1 | AVS_CS_SUB_WIDTH_2, AVS_CS_GENERIC_YUV444 = AVS_CS_PLANAR | AVS_CS_YUV | AVS_CS_VPLANEFIRST | AVS_CS_SUB_HEIGHT_1 | AVS_CS_SUB_WIDTH_1,
  AVS_CS_GENERIC_Y = AVS_CS_PLANAR | AVS_CS_INTERLEAVED | AVS_CS_YUV, AVS_CS_GENERIC_RGBP = AVS_CS_PLANAR | AVS_CS_BGR | AVS_CS_RGB_TYPE, AVS_CS_GENERIC_RGBAP = AVS_CS_PLANAR | AVS_CS_BGR | AVS_CS_RGBA_TYPE, AVS_CS_GENERIC_YUVA420 = AVS_CS_PLANAR | AVS_CS_YUVA | AVS_CS_VPLANEFIRST | AVS_CS_SUB_HEIGHT_2 | AVS_CS_SUB_WIDTH_2,
  AVS_CS_GENERIC_YUVA422 = AVS_CS_PLANAR | AVS_CS_YUVA | AVS_CS_VPLANEFIRST | AVS_CS_SUB_HEIGHT_1 | AVS_CS_SUB_WIDTH_2, AVS_CS_GENERIC_YUVA444 = AVS_CS_PLANAR | AVS_CS_YUVA | AVS_CS_VPLANEFIRST | AVS_CS_SUB_HEIGHT_1 | AVS_CS_SUB_WIDTH_1
}
 
enum  {
  AVS_CS_UNKNOWN = 0, AVS_CS_BGR24 = AVS_CS_RGB_TYPE | AVS_CS_BGR | AVS_CS_INTERLEAVED, AVS_CS_BGR32 = AVS_CS_RGBA_TYPE | AVS_CS_BGR | AVS_CS_INTERLEAVED, AVS_CS_YUY2 = 1<<2 | AVS_CS_YUV | AVS_CS_INTERLEAVED,
  AVS_CS_RAW32 = 1<<5 | AVS_CS_INTERLEAVED, AVS_CS_YV24 = AVS_CS_GENERIC_YUV444 | AVS_CS_SAMPLE_BITS_8, AVS_CS_YV16 = AVS_CS_GENERIC_YUV422 | AVS_CS_SAMPLE_BITS_8, AVS_CS_YV12 = AVS_CS_GENERIC_YUV420 | AVS_CS_SAMPLE_BITS_8,
  AVS_CS_I420 = AVS_CS_PLANAR | AVS_CS_YUV | AVS_CS_SAMPLE_BITS_8 | AVS_CS_UPLANEFIRST | AVS_CS_SUB_HEIGHT_2 | AVS_CS_SUB_WIDTH_2, AVS_CS_IYUV = AVS_CS_I420, AVS_CS_YV411 = AVS_CS_PLANAR | AVS_CS_YUV | AVS_CS_SAMPLE_BITS_8 | AVS_CS_VPLANEFIRST | AVS_CS_SUB_HEIGHT_1 | AVS_CS_SUB_WIDTH_4, AVS_CS_YUV9 = AVS_CS_PLANAR | AVS_CS_YUV | AVS_CS_SAMPLE_BITS_8 | AVS_CS_VPLANEFIRST | AVS_CS_SUB_HEIGHT_4 | AVS_CS_SUB_WIDTH_4,
  AVS_CS_Y8 = AVS_CS_GENERIC_Y | AVS_CS_SAMPLE_BITS_8, AVS_CS_YUV444P10 = AVS_CS_GENERIC_YUV444 | AVS_CS_SAMPLE_BITS_10, AVS_CS_YUV422P10 = AVS_CS_GENERIC_YUV422 | AVS_CS_SAMPLE_BITS_10, AVS_CS_YUV420P10 = AVS_CS_GENERIC_YUV420 | AVS_CS_SAMPLE_BITS_10,
  AVS_CS_Y10 = AVS_CS_GENERIC_Y | AVS_CS_SAMPLE_BITS_10, AVS_CS_YUV444P12 = AVS_CS_GENERIC_YUV444 | AVS_CS_SAMPLE_BITS_12, AVS_CS_YUV422P12 = AVS_CS_GENERIC_YUV422 | AVS_CS_SAMPLE_BITS_12, AVS_CS_YUV420P12 = AVS_CS_GENERIC_YUV420 | AVS_CS_SAMPLE_BITS_12,
  AVS_CS_Y12 = AVS_CS_GENERIC_Y | AVS_CS_SAMPLE_BITS_12, AVS_CS_YUV444P14 = AVS_CS_GENERIC_YUV444 | AVS_CS_SAMPLE_BITS_14, AVS_CS_YUV422P14 = AVS_CS_GENERIC_YUV422 | AVS_CS_SAMPLE_BITS_14, AVS_CS_YUV420P14 = AVS_CS_GENERIC_YUV420 | AVS_CS_SAMPLE_BITS_14,
  AVS_CS_Y14 = AVS_CS_GENERIC_Y | AVS_CS_SAMPLE_BITS_14, AVS_CS_YUV444P16 = AVS_CS_GENERIC_YUV444 | AVS_CS_SAMPLE_BITS_16, AVS_CS_YUV422P16 = AVS_CS_GENERIC_YUV422 | AVS_CS_SAMPLE_BITS_16, AVS_CS_YUV420P16 = AVS_CS_GENERIC_YUV420 | AVS_CS_SAMPLE_BITS_16,
  AVS_CS_Y16 = AVS_CS_GENERIC_Y | AVS_CS_SAMPLE_BITS_16, AVS_CS_YUV444PS = AVS_CS_GENERIC_YUV444 | AVS_CS_SAMPLE_BITS_32, AVS_CS_YUV422PS = AVS_CS_GENERIC_YUV422 | AVS_CS_SAMPLE_BITS_32, AVS_CS_YUV420PS = AVS_CS_GENERIC_YUV420 | AVS_CS_SAMPLE_BITS_32,
  AVS_CS_Y32 = AVS_CS_GENERIC_Y | AVS_CS_SAMPLE_BITS_32, AVS_CS_BGR48 = AVS_CS_RGB_TYPE | AVS_CS_BGR | AVS_CS_INTERLEAVED | AVS_CS_SAMPLE_BITS_16, AVS_CS_BGR64 = AVS_CS_RGBA_TYPE | AVS_CS_BGR | AVS_CS_INTERLEAVED | AVS_CS_SAMPLE_BITS_16, AVS_CS_RGBP = AVS_CS_GENERIC_RGBP | AVS_CS_SAMPLE_BITS_8,
  AVS_CS_RGBP10 = AVS_CS_GENERIC_RGBP | AVS_CS_SAMPLE_BITS_10, AVS_CS_RGBP12 = AVS_CS_GENERIC_RGBP | AVS_CS_SAMPLE_BITS_12, AVS_CS_RGBP14 = AVS_CS_GENERIC_RGBP | AVS_CS_SAMPLE_BITS_14, AVS_CS_RGBP16 = AVS_CS_GENERIC_RGBP | AVS_CS_SAMPLE_BITS_16,
  AVS_CS_RGBPS = AVS_CS_GENERIC_RGBP | AVS_CS_SAMPLE_BITS_32, AVS_CS_RGBAP = AVS_CS_GENERIC_RGBAP | AVS_CS_SAMPLE_BITS_8, AVS_CS_RGBAP10 = AVS_CS_GENERIC_RGBAP | AVS_CS_SAMPLE_BITS_10, AVS_CS_RGBAP12 = AVS_CS_GENERIC_RGBAP | AVS_CS_SAMPLE_BITS_12,
  AVS_CS_RGBAP14 = AVS_CS_GENERIC_RGBAP | AVS_CS_SAMPLE_BITS_14, AVS_CS_RGBAP16 = AVS_CS_GENERIC_RGBAP | AVS_CS_SAMPLE_BITS_16, AVS_CS_RGBAPS = AVS_CS_GENERIC_RGBAP | AVS_CS_SAMPLE_BITS_32, AVS_CS_YUVA444 = AVS_CS_GENERIC_YUVA444 | AVS_CS_SAMPLE_BITS_8,
  AVS_CS_YUVA422 = AVS_CS_GENERIC_YUVA422 | AVS_CS_SAMPLE_BITS_8, AVS_CS_YUVA420 = AVS_CS_GENERIC_YUVA420 | AVS_CS_SAMPLE_BITS_8, AVS_CS_YUVA444P10 = AVS_CS_GENERIC_YUVA444 | AVS_CS_SAMPLE_BITS_10, AVS_CS_YUVA422P10 = AVS_CS_GENERIC_YUVA422 | AVS_CS_SAMPLE_BITS_10,
  AVS_CS_YUVA420P10 = AVS_CS_GENERIC_YUVA420 | AVS_CS_SAMPLE_BITS_10, AVS_CS_YUVA444P12 = AVS_CS_GENERIC_YUVA444 | AVS_CS_SAMPLE_BITS_12, AVS_CS_YUVA422P12 = AVS_CS_GENERIC_YUVA422 | AVS_CS_SAMPLE_BITS_12, AVS_CS_YUVA420P12 = AVS_CS_GENERIC_YUVA420 | AVS_CS_SAMPLE_BITS_12,
  AVS_CS_YUVA444P14 = AVS_CS_GENERIC_YUVA444 | AVS_CS_SAMPLE_BITS_14, AVS_CS_YUVA422P14 = AVS_CS_GENERIC_YUVA422 | AVS_CS_SAMPLE_BITS_14, AVS_CS_YUVA420P14 = AVS_CS_GENERIC_YUVA420 | AVS_CS_SAMPLE_BITS_14, AVS_CS_YUVA444P16 = AVS_CS_GENERIC_YUVA444 | AVS_CS_SAMPLE_BITS_16,
  AVS_CS_YUVA422P16 = AVS_CS_GENERIC_YUVA422 | AVS_CS_SAMPLE_BITS_16, AVS_CS_YUVA420P16 = AVS_CS_GENERIC_YUVA420 | AVS_CS_SAMPLE_BITS_16, AVS_CS_YUVA444PS = AVS_CS_GENERIC_YUVA444 | AVS_CS_SAMPLE_BITS_32, AVS_CS_YUVA422PS = AVS_CS_GENERIC_YUVA422 | AVS_CS_SAMPLE_BITS_32,
  AVS_CS_YUVA420PS = AVS_CS_GENERIC_YUVA420 | AVS_CS_SAMPLE_BITS_32
}
 
enum  { AVS_IT_BFF = 1<<0, AVS_IT_TFF = 1<<1, AVS_IT_FIELDBASED = 1<<2 }
 
enum  {
  AVS_FILTER_TYPE =1, AVS_FILTER_INPUT_COLORSPACE =2, AVS_FILTER_OUTPUT_TYPE =9, AVS_FILTER_NAME =4,
  AVS_FILTER_AUTHOR =5, AVS_FILTER_VERSION =6, AVS_FILTER_ARGS =7, AVS_FILTER_ARGS_INFO =8,
  AVS_FILTER_ARGS_DESCRIPTION =10, AVS_FILTER_DESCRIPTION =11
}
 
enum  { AVS_FILTER_TYPE_AUDIO =1, AVS_FILTER_TYPE_VIDEO =2, AVS_FILTER_OUTPUT_TYPE_SAME =3, AVS_FILTER_OUTPUT_TYPE_DIFFERENT =4 }
 
enum  {
  AVS_CACHE_NOTHING =10, AVS_CACHE_WINDOW =11, AVS_CACHE_GENERIC =12, AVS_CACHE_FORCE_GENERIC =13,
  AVS_CACHE_GET_POLICY =30, AVS_CACHE_GET_WINDOW =31, AVS_CACHE_GET_RANGE =32, AVS_CACHE_AUDIO =50,
  AVS_CACHE_AUDIO_NOTHING =51, AVS_CACHE_AUDIO_NONE =52, AVS_CACHE_AUDIO_AUTO =53, AVS_CACHE_GET_AUDIO_POLICY =70,
  AVS_CACHE_GET_AUDIO_SIZE =71, AVS_CACHE_PREFETCH_FRAME =100, AVS_CACHE_PREFETCH_GO =101, AVS_CACHE_PREFETCH_AUDIO_BEGIN =120,
  AVS_CACHE_PREFETCH_AUDIO_STARTLO =121, AVS_CACHE_PREFETCH_AUDIO_STARTHI =122, AVS_CACHE_PREFETCH_AUDIO_COUNT =123, AVS_CACHE_PREFETCH_AUDIO_COMMIT =124,
  AVS_CACHE_PREFETCH_AUDIO_GO =125, AVS_CACHE_GETCHILD_CACHE_MODE =200, AVS_CACHE_GETCHILD_CACHE_SIZE =201, AVS_CACHE_GETCHILD_AUDIO_MODE =202,
  AVS_CACHE_GETCHILD_AUDIO_SIZE =203, AVS_CACHE_GETCHILD_COST =220, AVS_CACHE_COST_ZERO =221, AVS_CACHE_COST_UNIT =222,
  AVS_CACHE_COST_LOW =223, AVS_CACHE_COST_MED =224, AVS_CACHE_COST_HI =225, AVS_CACHE_GETCHILD_THREAD_MODE =240,
  AVS_CACHE_THREAD_UNSAFE =241, AVS_CACHE_THREAD_CLASS =242, AVS_CACHE_THREAD_SAFE =243, AVS_CACHE_THREAD_OWN =244,
  AVS_CACHE_GETCHILD_ACCESS_COST =260, AVS_CACHE_ACCESS_RAND =261, AVS_CACHE_ACCESS_SEQ0 =262, AVS_CACHE_ACCESS_SEQ1 =263
}
 
enum  {
  AVS_CPU_FORCE = 0x01, AVS_CPU_FPU = 0x02, AVS_CPU_MMX = 0x04, AVS_CPU_INTEGER_SSE = 0x08,
  AVS_CPU_SSE = 0x10, AVS_CPU_SSE2 = 0x20, AVS_CPU_3DNOW = 0x40, AVS_CPU_3DNOW_EXT = 0x80,
  AVS_CPU_X86_64 = 0xA0, AVS_CPUF_SSE3 = 0x100, AVS_CPUF_SSSE3 = 0x200, AVS_CPUF_SSE4 = 0x400,
  AVS_CPUF_SSE4_1 = 0x400, AVS_CPUF_AVX = 0x800, AVS_CPUF_SSE4_2 = 0x1000, AVS_CPUF_AVX2 = 0x2000,
  AVS_CPUF_FMA3 = 0x4000, AVS_CPUF_F16C = 0x8000, AVS_CPUF_MOVBE = 0x10000, AVS_CPUF_POPCNT = 0x20000,
  AVS_CPUF_AES = 0x40000, AVS_CPUF_FMA4 = 0x80000, AVS_CPUF_AVX512F = 0x100000, AVS_CPUF_AVX512DQ = 0x200000,
  AVS_CPUF_AVX512PF = 0x400000, AVS_CPUF_AVX512ER = 0x800000, AVS_CPUF_AVX512CD = 0x1000000, AVS_CPUF_AVX512BW = 0x2000000,
  AVS_CPUF_AVX512VL = 0x4000000, AVS_CPUF_AVX512IFMA = 0x8000000, AVS_CPUF_AVX512VBMI = 0x10000000
}
 

Functions

AVSC_INLINE int avs_has_video (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_has_audio (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_is_rgb (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_is_rgb24 (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_is_rgb32 (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_is_yuv (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_is_yuy2 (const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_yv24)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_yv16)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_yv12)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_yv411)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_y8)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_get_plane_width_subsampling)(const AVS_VideoInfo *p
 
 AVSC_API (int, avs_get_plane_height_subsampling)(const AVS_VideoInfo *p
 
 AVSC_API (int, avs_bits_per_pixel)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_bytes_from_pixels)(const AVS_VideoInfo *p
 
 AVSC_API (int, avs_row_size)(const AVS_VideoInfo *p
 
 AVSC_API (int, avs_bmp_size)(const AVS_VideoInfo *vi)
 
 AVSC_API (int, avs_is_color_space)(const AVS_VideoInfo *p
 
AVSC_INLINE int avs_is_property (const AVS_VideoInfo *p, int property)
 
AVSC_INLINE int avs_is_planar (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_is_field_based (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_is_parity_known (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_is_bff (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_is_tff (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_samples_per_second (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_bytes_per_channel_sample (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_bytes_per_audio_sample (const AVS_VideoInfo *p)
 
AVSC_INLINE INT64 avs_audio_samples_from_frames (const AVS_VideoInfo *p, INT64 frames)
 
AVSC_INLINE int avs_frames_from_audio_samples (const AVS_VideoInfo *p, INT64 samples)
 
AVSC_INLINE INT64 avs_audio_samples_from_bytes (const AVS_VideoInfo *p, INT64 bytes)
 
AVSC_INLINE INT64 avs_bytes_from_audio_samples (const AVS_VideoInfo *p, INT64 samples)
 
AVSC_INLINE int avs_audio_channels (const AVS_VideoInfo *p)
 
AVSC_INLINE int avs_sample_type (const AVS_VideoInfo *p)
 
AVSC_INLINE void avs_set_property (AVS_VideoInfo *p, int property)
 
AVSC_INLINE void avs_clear_property (AVS_VideoInfo *p, int property)
 
AVSC_INLINE void avs_set_field_based (AVS_VideoInfo *p, int isfieldbased)
 
AVSC_INLINE void avs_set_fps (AVS_VideoInfo *p, unsigned numerator, unsigned denominator)
 
AVSC_INLINE int avs_is_same_colorspace (const AVS_VideoInfo *x, const AVS_VideoInfo *y)
 
 AVSC_API (int, avs_is_rgb48)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_rgb64)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_yuv444p16)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_yuv422p16)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_yuv420p16)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_y16)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_yuv444ps)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_yuv422ps)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_yuv420ps)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_y32)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_444)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_422)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_420)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_y)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_yuva)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_planar_rgb)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_planar_rgba)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_num_components)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_component_size)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_bits_per_component)(const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_get_pitch_p)(const AVS_VideoFrame *p
 
 AVSC_API (int, avs_get_row_size_p)(const AVS_VideoFrame *p
 
 AVSC_API (int, avs_get_height_p)(const AVS_VideoFrame *p
 
 AVSC_API (const BYTE *, avs_get_read_ptr_p)(const AVS_VideoFrame *p
 
 AVSC_API (int, avs_is_writable)(const AVS_VideoFrame *p)
 
 AVSC_API (BYTE *, avs_get_write_ptr_p)(const AVS_VideoFrame *p
 
 AVSC_API (void, avs_release_video_frame)(AVS_VideoFrame *)
 
 AVSC_API (AVS_VideoFrame *, avs_copy_video_frame)(AVS_VideoFrame *)
 
AVSC_INLINE int avs_get_pitch (const AVS_VideoFrame *p)
 
AVSC_INLINE int avs_get_row_size (const AVS_VideoFrame *p)
 
AVSC_INLINE int avs_get_height (const AVS_VideoFrame *p)
 
AVSC_INLINE const BYTEavs_get_read_ptr (const AVS_VideoFrame *p)
 
AVSC_INLINE BYTEavs_get_write_ptr (const AVS_VideoFrame *p)
 
AVSC_INLINE void avs_release_frame (AVS_VideoFrame *f)
 
AVSC_INLINE AVS_VideoFrameavs_copy_frame (AVS_VideoFrame *f)
 
 AVSC_API (void, avs_copy_value)(AVS_Value *dest
 
 AVSC_API (void, avs_release_value)(AVS_Value)
 
 AVSC_API (AVS_Clip *, avs_take_clip)(AVS_Value
 
AVS_ScriptEnvironmentAVSC_API (void, avs_set_to_clip)(AVS_Value *
 
AVS_ScriptEnvironment AVS_Clip *AVSC_INLINE int avs_defined (AVS_Value v)
 
AVSC_INLINE int avs_is_clip (AVS_Value v)
 
AVSC_INLINE int avs_is_bool (AVS_Value v)
 
AVSC_INLINE int avs_is_int (AVS_Value v)
 
AVSC_INLINE int avs_is_float (AVS_Value v)
 
AVSC_INLINE int avs_is_string (AVS_Value v)
 
AVSC_INLINE int avs_is_array (AVS_Value v)
 
AVSC_INLINE int avs_is_error (AVS_Value v)
 
AVSC_INLINE int avs_as_bool (AVS_Value v)
 
AVSC_INLINE int avs_as_int (AVS_Value v)
 
AVSC_INLINE const char * avs_as_string (AVS_Value v)
 
AVSC_INLINE double avs_as_float (AVS_Value v)
 
AVSC_INLINE const char * avs_as_error (AVS_Value v)
 
AVSC_INLINE const AVS_Valueavs_as_array (AVS_Value v)
 
AVSC_INLINE int avs_array_size (AVS_Value v)
 
AVSC_INLINE AVS_Value avs_array_elt (AVS_Value v, int index)
 
AVSC_INLINE AVS_Value avs_new_value_bool (int v0)
 
AVSC_INLINE AVS_Value avs_new_value_int (int v0)
 
AVSC_INLINE AVS_Value avs_new_value_string (const char *v0)
 
AVSC_INLINE AVS_Value avs_new_value_float (float v0)
 
AVSC_INLINE AVS_Value avs_new_value_error (const char *v0)
 
AVSC_INLINE AVS_Value avs_new_value_clip (AVS_Clip *v0)
 
AVSC_INLINE AVS_Value avs_new_value_array (AVS_Value *v0, int size)
 
 AVSC_API (void, avs_release_clip)(AVS_Clip *)
 
 AVSC_API (AVS_Clip *, avs_copy_clip)(AVS_Clip *)
 
 AVSC_API (const char *, avs_clip_get_error)(AVS_Clip *)
 
 AVSC_API (const AVS_VideoInfo *, avs_get_video_info)(AVS_Clip *)
 
 AVSC_API (int, avs_get_version)(AVS_Clip *)
 
 AVSC_API (AVS_VideoFrame *, avs_get_frame)(AVS_Clip *
 
 AVSC_API (int, avs_get_parity)(AVS_Clip *
 
 AVSC_API (int, avs_get_audio)(AVS_Clip *
 
 AVSC_API (int, avs_set_cache_hints)(AVS_Clip *
 
typedef AVS_Value (AVSC_CC *AVS_ApplyFunc)(AVS_ScriptEnvironment *
 
 AVSC_API (AVS_Clip *, avs_new_c_filter)(AVS_ScriptEnvironment *e
 
 AVSC_API (const char *, avs_get_error)(AVS_ScriptEnvironment *)
 
 AVSC_API (int, avs_get_cpu_flags)(AVS_ScriptEnvironment *)
 
 AVSC_API (int, avs_check_version)(AVS_ScriptEnvironment *
 
 AVSC_API (char *, avs_save_string)(AVS_ScriptEnvironment *
 
 AVSC_API (char *, avs_sprintf)(AVS_ScriptEnvironment *
 
const char AVSC_API (char *, avs_vsprintf)(AVS_ScriptEnvironment *
 
 AVSC_API (int, avs_add_function)(AVS_ScriptEnvironment *
 
 AVSC_API (int, avs_function_exists)(AVS_ScriptEnvironment *
 
 AVSC_API (AVS_Value, avs_invoke)(AVS_ScriptEnvironment *
 
 AVSC_API (AVS_Value, avs_get_var)(AVS_ScriptEnvironment *
 
 AVSC_API (int, avs_set_var)(AVS_ScriptEnvironment *
 
 AVSC_API (int, avs_set_global_var)(AVS_ScriptEnvironment *
 
 AVSC_API (AVS_VideoFrame *, avs_new_video_frame_a)(AVS_ScriptEnvironment *
 
AVSC_INLINE AVS_VideoFrameavs_new_video_frame (AVS_ScriptEnvironment *env, const AVS_VideoInfo *vi)
 
AVSC_INLINE AVS_VideoFrameavs_new_frame (AVS_ScriptEnvironment *env, const AVS_VideoInfo *vi)
 
 AVSC_API (int, avs_make_writable)(AVS_ScriptEnvironment *
 
 AVSC_API (void, avs_bit_blt)(AVS_ScriptEnvironment *
 
 AVSC_API (void, avs_at_exit)(AVS_ScriptEnvironment *
 
 AVSC_API (AVS_VideoFrame *, avs_subframe)(AVS_ScriptEnvironment *
 
 AVSC_API (int, avs_set_memory_max)(AVS_ScriptEnvironment *
 
 AVSC_API (int, avs_set_working_dir)(AVS_ScriptEnvironment *
 
 AVSC_API (AVS_ScriptEnvironment *, avs_create_script_environment)(int version)
 
AVSC_EXPORT const char *AVSC_CC avisynth_c_plugin_init (AVS_ScriptEnvironment *env)
 
 AVSC_API (void, avs_delete_script_environment)(AVS_ScriptEnvironment *)
 
 AVSC_API (AVS_VideoFrame *, avs_subframe_planar)(AVS_ScriptEnvironment *
 

Variables

int plane
 
int pixels
 
int c_space
 
static const AVS_Value avs_void = {'v'}
 
AVS_Value src
 
int n
 
voidbuf
 
void INT64 start
 
void INT64 INT64 count
 
int cachehints
 
int int frame_range
 
AVS_FilterInfo ** fi
 
AVS_FilterInfo AVS_Value child
 
AVS_FilterInfo AVS_Value int store_child
 
int version
 
const char * s
 
const char int length
 
const char * fmt
 
const char const char voidval
 
const char * name
 
const char const char * params
 
const char const char AVS_ApplyFunc apply
 
const char AVS_Value const char ** arg_names
 
const AVS_VideoInfovi
 
const AVS_VideoInfo int align
 
AVS_VideoFrame ** pvf
 
BYTEdstp
 
BYTE int dst_pitch
 
BYTE int const BYTEsrcp
 
BYTE int const BYTE int src_pitch
 
BYTE int const BYTE int int row_size
 
BYTE int const BYTE int int int height
 
AVS_ShutdownFunc function
 
AVS_VideoFrame int rel_offset
 
AVS_VideoFrame int int new_pitch
 
AVS_VideoFrame int int int new_row_size
 
AVS_VideoFrame int int int int new_height
 
int mem
 
const char * newdir
 
AVS_VideoFrame int int int int int rel_offsetU
 
AVS_VideoFrame int int int int int int rel_offsetV
 
AVS_VideoFrame int int int int int int int new_pitchUV
 

Macro Definition Documentation

#define AVS_FRAME_ALIGN   FRAME_ALIGN

Definition at line 61 of file avisynth_c.h.

Referenced by avs_new_frame(), and avs_new_video_frame().

Typedef Documentation

typedef struct AVS_Clip AVS_Clip

Definition at line 326 of file avisynth_c.h.

Definition at line 327 of file avisynth_c.h.

const char AVS_Value args

Definition at line 775 of file avisynth_c.h.

Definition at line 775 of file avisynth_c.h.

typedef void(AVSC_CC * AVS_ShutdownFunc) (void *user_data, AVS_ScriptEnvironment *env)

Definition at line 910 of file avisynth_c.h.

Enumeration Type Documentation

anonymous enum
Enumerator
AVISYNTH_INTERFACE_VERSION 

Definition at line 68 of file avisynth_c.h.

anonymous enum
Enumerator
AVS_SAMPLE_INT8 
AVS_SAMPLE_INT16 
AVS_SAMPLE_INT24 
AVS_SAMPLE_INT32 
AVS_SAMPLE_FLOAT 

Definition at line 71 of file avisynth_c.h.

anonymous enum
Enumerator
AVS_PLANAR_Y 
AVS_PLANAR_U 
AVS_PLANAR_V 
AVS_PLANAR_ALIGNED 
AVS_PLANAR_Y_ALIGNED 
AVS_PLANAR_U_ALIGNED 
AVS_PLANAR_V_ALIGNED 
AVS_PLANAR_A 
AVS_PLANAR_R 
AVS_PLANAR_G 
AVS_PLANAR_B 
AVS_PLANAR_A_ALIGNED 
AVS_PLANAR_R_ALIGNED 
AVS_PLANAR_G_ALIGNED 
AVS_PLANAR_B_ALIGNED 

Definition at line 77 of file avisynth_c.h.

anonymous enum
Enumerator
AVS_CS_YUVA 
AVS_CS_BGR 
AVS_CS_YUV 
AVS_CS_INTERLEAVED 
AVS_CS_PLANAR 
AVS_CS_SHIFT_SUB_WIDTH 
AVS_CS_SHIFT_SUB_HEIGHT 
AVS_CS_SHIFT_SAMPLE_BITS 
AVS_CS_SUB_WIDTH_MASK 
AVS_CS_SUB_WIDTH_1 
AVS_CS_SUB_WIDTH_2 
AVS_CS_SUB_WIDTH_4 
AVS_CS_VPLANEFIRST 
AVS_CS_UPLANEFIRST 
AVS_CS_SUB_HEIGHT_MASK 
AVS_CS_SUB_HEIGHT_1 
AVS_CS_SUB_HEIGHT_2 
AVS_CS_SUB_HEIGHT_4 
AVS_CS_SAMPLE_BITS_MASK 
AVS_CS_SAMPLE_BITS_8 
AVS_CS_SAMPLE_BITS_10 
AVS_CS_SAMPLE_BITS_12 
AVS_CS_SAMPLE_BITS_14 
AVS_CS_SAMPLE_BITS_16 
AVS_CS_SAMPLE_BITS_32 
AVS_CS_PLANAR_MASK 
AVS_CS_PLANAR_FILTER 
AVS_CS_RGB_TYPE 
AVS_CS_RGBA_TYPE 
AVS_CS_GENERIC_YUV420 
AVS_CS_GENERIC_YUV422 
AVS_CS_GENERIC_YUV444 
AVS_CS_GENERIC_Y 
AVS_CS_GENERIC_RGBP 
AVS_CS_GENERIC_RGBAP 
AVS_CS_GENERIC_YUVA420 
AVS_CS_GENERIC_YUVA422 
AVS_CS_GENERIC_YUVA444 

Definition at line 94 of file avisynth_c.h.

anonymous enum
Enumerator
AVS_CS_UNKNOWN 
AVS_CS_BGR24 
AVS_CS_BGR32 
AVS_CS_YUY2 
AVS_CS_RAW32 
AVS_CS_YV24 
AVS_CS_YV16 
AVS_CS_YV12 
AVS_CS_I420 
AVS_CS_IYUV 
AVS_CS_YV411 
AVS_CS_YUV9 
AVS_CS_Y8 
AVS_CS_YUV444P10 
AVS_CS_YUV422P10 
AVS_CS_YUV420P10 
AVS_CS_Y10 
AVS_CS_YUV444P12 
AVS_CS_YUV422P12 
AVS_CS_YUV420P12 
AVS_CS_Y12 
AVS_CS_YUV444P14 
AVS_CS_YUV422P14 
AVS_CS_YUV420P14 
AVS_CS_Y14 
AVS_CS_YUV444P16 
AVS_CS_YUV422P16 
AVS_CS_YUV420P16 
AVS_CS_Y16 
AVS_CS_YUV444PS 
AVS_CS_YUV422PS 
AVS_CS_YUV420PS 
AVS_CS_Y32 
AVS_CS_BGR48 
AVS_CS_BGR64 
AVS_CS_RGBP 
AVS_CS_RGBP10 
AVS_CS_RGBP12 
AVS_CS_RGBP14 
AVS_CS_RGBP16 
AVS_CS_RGBPS 
AVS_CS_RGBAP 
AVS_CS_RGBAP10 
AVS_CS_RGBAP12 
AVS_CS_RGBAP14 
AVS_CS_RGBAP16 
AVS_CS_RGBAPS 
AVS_CS_YUVA444 
AVS_CS_YUVA422 
AVS_CS_YUVA420 
AVS_CS_YUVA444P10 
AVS_CS_YUVA422P10 
AVS_CS_YUVA420P10 
AVS_CS_YUVA444P12 
AVS_CS_YUVA422P12 
AVS_CS_YUVA420P12 
AVS_CS_YUVA444P14 
AVS_CS_YUVA422P14 
AVS_CS_YUVA420P14 
AVS_CS_YUVA444P16 
AVS_CS_YUVA422P16 
AVS_CS_YUVA420P16 
AVS_CS_YUVA444PS 
AVS_CS_YUVA422PS 
AVS_CS_YUVA420PS 

Definition at line 144 of file avisynth_c.h.

anonymous enum
Enumerator
AVS_IT_BFF 
AVS_IT_TFF 
AVS_IT_FIELDBASED 

Definition at line 239 of file avisynth_c.h.

anonymous enum
Enumerator
AVS_FILTER_TYPE 
AVS_FILTER_INPUT_COLORSPACE 
AVS_FILTER_OUTPUT_TYPE 
AVS_FILTER_NAME 
AVS_FILTER_AUTHOR 
AVS_FILTER_VERSION 
AVS_FILTER_ARGS 
AVS_FILTER_ARGS_INFO 
AVS_FILTER_ARGS_DESCRIPTION 
AVS_FILTER_DESCRIPTION 

Definition at line 244 of file avisynth_c.h.

anonymous enum
Enumerator
AVS_FILTER_TYPE_AUDIO 
AVS_FILTER_TYPE_VIDEO 
AVS_FILTER_OUTPUT_TYPE_SAME 
AVS_FILTER_OUTPUT_TYPE_DIFFERENT 

Definition at line 256 of file avisynth_c.h.

anonymous enum
Enumerator
AVS_CACHE_NOTHING 
AVS_CACHE_WINDOW 
AVS_CACHE_GENERIC 
AVS_CACHE_FORCE_GENERIC 
AVS_CACHE_GET_POLICY 
AVS_CACHE_GET_WINDOW 
AVS_CACHE_GET_RANGE 
AVS_CACHE_AUDIO 
AVS_CACHE_AUDIO_NOTHING 
AVS_CACHE_AUDIO_NONE 
AVS_CACHE_AUDIO_AUTO 
AVS_CACHE_GET_AUDIO_POLICY 
AVS_CACHE_GET_AUDIO_SIZE 
AVS_CACHE_PREFETCH_FRAME 
AVS_CACHE_PREFETCH_GO 
AVS_CACHE_PREFETCH_AUDIO_BEGIN 
AVS_CACHE_PREFETCH_AUDIO_STARTLO 
AVS_CACHE_PREFETCH_AUDIO_STARTHI 
AVS_CACHE_PREFETCH_AUDIO_COUNT 
AVS_CACHE_PREFETCH_AUDIO_COMMIT 
AVS_CACHE_PREFETCH_AUDIO_GO 
AVS_CACHE_GETCHILD_CACHE_MODE 
AVS_CACHE_GETCHILD_CACHE_SIZE 
AVS_CACHE_GETCHILD_AUDIO_MODE 
AVS_CACHE_GETCHILD_AUDIO_SIZE 
AVS_CACHE_GETCHILD_COST 
AVS_CACHE_COST_ZERO 
AVS_CACHE_COST_UNIT 
AVS_CACHE_COST_LOW 
AVS_CACHE_COST_MED 
AVS_CACHE_COST_HI 
AVS_CACHE_GETCHILD_THREAD_MODE 
AVS_CACHE_THREAD_UNSAFE 
AVS_CACHE_THREAD_CLASS 
AVS_CACHE_THREAD_SAFE 
AVS_CACHE_THREAD_OWN 
AVS_CACHE_GETCHILD_ACCESS_COST 
AVS_CACHE_ACCESS_RAND 
AVS_CACHE_ACCESS_SEQ0 
AVS_CACHE_ACCESS_SEQ1 

Definition at line 262 of file avisynth_c.h.

anonymous enum
Enumerator
AVS_CPU_FORCE 
AVS_CPU_FPU 
AVS_CPU_MMX 
AVS_CPU_INTEGER_SSE 
AVS_CPU_SSE 
AVS_CPU_SSE2 
AVS_CPU_3DNOW 
AVS_CPU_3DNOW_EXT 
AVS_CPU_X86_64 
AVS_CPUF_SSE3 
AVS_CPUF_SSSE3 
AVS_CPUF_SSE4 
AVS_CPUF_SSE4_1 
AVS_CPUF_AVX 
AVS_CPUF_SSE4_2 
AVS_CPUF_AVX2 
AVS_CPUF_FMA3 
AVS_CPUF_F16C 
AVS_CPUF_MOVBE 
AVS_CPUF_POPCNT 
AVS_CPUF_AES 
AVS_CPUF_FMA4 
AVS_CPUF_AVX512F 
AVS_CPUF_AVX512DQ 
AVS_CPUF_AVX512PF 
AVS_CPUF_AVX512ER 
AVS_CPUF_AVX512CD 
AVS_CPUF_AVX512BW 
AVS_CPUF_AVX512VL 
AVS_CPUF_AVX512IFMA 
AVS_CPUF_AVX512VBMI 

Definition at line 816 of file avisynth_c.h.

Function Documentation

AVSC_INLINE int avs_has_video ( const AVS_VideoInfo p)
AVSC_INLINE int avs_has_audio ( const AVS_VideoInfo p)

Definition at line 356 of file avisynth_c.h.

Referenced by avisynth_create_stream(), avisynth_read_packet(), and avisynth_read_seek().

AVSC_INLINE int avs_is_rgb ( const AVS_VideoInfo p)

Definition at line 359 of file avisynth_c.h.

Referenced by avisynth_read_packet_video().

AVSC_INLINE int avs_is_rgb24 ( const AVS_VideoInfo p)

Definition at line 362 of file avisynth_c.h.

Referenced by avisynth_read_packet_video().

AVSC_INLINE int avs_is_rgb32 ( const AVS_VideoInfo p)

Definition at line 365 of file avisynth_c.h.

AVSC_INLINE int avs_is_yuv ( const AVS_VideoInfo p)

Definition at line 368 of file avisynth_c.h.

AVSC_INLINE int avs_is_yuy2 ( const AVS_VideoInfo p)

Definition at line 371 of file avisynth_c.h.

AVSC_API ( int  ,
avs_is_yv24   
) const
AVSC_API ( int  ,
avs_is_yv16   
) const
AVSC_API ( int  ,
avs_is_yv12   
) const
AVSC_API ( int  ,
avs_is_yv411   
) const
AVSC_API ( int  ,
avs_is_y8   
) const
AVSC_API ( int  ,
avs_get_plane_width_subsampling   
) const
AVSC_API ( int  ,
avs_get_plane_height_subsampling   
) const
AVSC_API ( int  ,
avs_bits_per_pixel   
) const
AVSC_API ( int  ,
avs_bytes_from_pixels   
) const
AVSC_API ( int  ,
avs_row_size   
) const
AVSC_API ( int  ,
avs_bmp_size   
) const
AVSC_API ( int  ,
avs_is_color_space   
) const
AVSC_INLINE int avs_is_property ( const AVS_VideoInfo p,
int  property 
)

Definition at line 399 of file avisynth_c.h.

AVSC_INLINE int avs_is_planar ( const AVS_VideoInfo p)

Definition at line 404 of file avisynth_c.h.

AVSC_INLINE int avs_is_field_based ( const AVS_VideoInfo p)

Definition at line 409 of file avisynth_c.h.

AVSC_INLINE int avs_is_parity_known ( const AVS_VideoInfo p)

Definition at line 414 of file avisynth_c.h.

AVSC_INLINE int avs_is_bff ( const AVS_VideoInfo p)

Definition at line 419 of file avisynth_c.h.

AVSC_INLINE int avs_is_tff ( const AVS_VideoInfo p)

Definition at line 424 of file avisynth_c.h.

AVSC_INLINE int avs_samples_per_second ( const AVS_VideoInfo p)

Definition at line 429 of file avisynth_c.h.

AVSC_INLINE int avs_bytes_per_channel_sample ( const AVS_VideoInfo p)

Definition at line 432 of file avisynth_c.h.

Referenced by avisynth_read_packet_audio(), and avs_bytes_per_audio_sample().

AVSC_INLINE int avs_bytes_per_audio_sample ( const AVS_VideoInfo p)

Definition at line 444 of file avisynth_c.h.

Referenced by avs_audio_samples_from_bytes(), and avs_bytes_from_audio_samples().

AVSC_INLINE INT64 avs_audio_samples_from_frames ( const AVS_VideoInfo p,
INT64  frames 
)

Definition at line 447 of file avisynth_c.h.

AVSC_INLINE int avs_frames_from_audio_samples ( const AVS_VideoInfo p,
INT64  samples 
)

Definition at line 450 of file avisynth_c.h.

AVSC_INLINE INT64 avs_audio_samples_from_bytes ( const AVS_VideoInfo p,
INT64  bytes 
)

Definition at line 453 of file avisynth_c.h.

AVSC_INLINE INT64 avs_bytes_from_audio_samples ( const AVS_VideoInfo p,
INT64  samples 
)

Definition at line 456 of file avisynth_c.h.

AVSC_INLINE int avs_audio_channels ( const AVS_VideoInfo p)

Definition at line 459 of file avisynth_c.h.

AVSC_INLINE int avs_sample_type ( const AVS_VideoInfo p)

Definition at line 462 of file avisynth_c.h.

AVSC_INLINE void avs_set_property ( AVS_VideoInfo p,
int  property 
)

Definition at line 466 of file avisynth_c.h.

AVSC_INLINE void avs_clear_property ( AVS_VideoInfo p,
int  property 
)

Definition at line 469 of file avisynth_c.h.

AVSC_INLINE void avs_set_field_based ( AVS_VideoInfo p,
int  isfieldbased 
)

Definition at line 472 of file avisynth_c.h.

AVSC_INLINE void avs_set_fps ( AVS_VideoInfo p,
unsigned  numerator,
unsigned  denominator 
)

Definition at line 475 of file avisynth_c.h.

AVSC_INLINE int avs_is_same_colorspace ( const AVS_VideoInfo x,
const AVS_VideoInfo y 
)

Definition at line 487 of file avisynth_c.h.

AVSC_API ( int  ,
avs_is_rgb48   
) const
AVSC_API ( int  ,
avs_is_rgb64   
) const
AVSC_API ( int  ,
avs_is_yuv444p16   
) const
AVSC_API ( int  ,
avs_is_yuv422p16   
) const
AVSC_API ( int  ,
avs_is_yuv420p16   
) const
AVSC_API ( int  ,
avs_is_y16   
) const
AVSC_API ( int  ,
avs_is_yuv444ps   
) const
AVSC_API ( int  ,
avs_is_yuv422ps   
) const
AVSC_API ( int  ,
avs_is_yuv420ps   
) const
AVSC_API ( int  ,
avs_is_y32   
) const
AVSC_API ( int  ,
avs_is_444   
) const
AVSC_API ( int  ,
avs_is_422   
) const
AVSC_API ( int  ,
avs_is_420   
) const
AVSC_API ( int  ,
avs_is_y   
) const
AVSC_API ( int  ,
avs_is_yuva   
) const
AVSC_API ( int  ,
avs_is_planar_rgb   
) const
AVSC_API ( int  ,
avs_is_planar_rgba   
) const
AVSC_API ( int  ,
avs_num_components   
) const
AVSC_API ( int  ,
avs_component_size   
) const
AVSC_API ( int  ,
avs_bits_per_component   
) const
AVSC_API ( int  ,
avs_get_pitch_p   
) const
AVSC_API ( int  ,
avs_get_row_size_p   
) const
AVSC_API ( int  ,
avs_get_height_p   
) const
AVSC_API ( const BYTE ,
avs_get_read_ptr_p   
) const
AVSC_API ( int  ,
avs_is_writable   
) const
AVSC_API ( BYTE ,
avs_get_write_ptr_p   
) const
AVSC_API ( void  ,
avs_release_video_frame   
)
AVSC_API ( AVS_VideoFrame ,
avs_copy_video_frame   
)
AVSC_INLINE int avs_get_pitch ( const AVS_VideoFrame p)

Definition at line 614 of file avisynth_c.h.

AVSC_INLINE int avs_get_row_size ( const AVS_VideoFrame p)

Definition at line 621 of file avisynth_c.h.

AVSC_INLINE int avs_get_height ( const AVS_VideoFrame p)

Definition at line 628 of file avisynth_c.h.

AVSC_INLINE const BYTE* avs_get_read_ptr ( const AVS_VideoFrame p)

Definition at line 635 of file avisynth_c.h.

AVSC_INLINE BYTE* avs_get_write_ptr ( const AVS_VideoFrame p)

Definition at line 641 of file avisynth_c.h.

AVSC_INLINE void avs_release_frame ( AVS_VideoFrame f)

Definition at line 647 of file avisynth_c.h.

AVSC_INLINE AVS_VideoFrame* avs_copy_frame ( AVS_VideoFrame f)

Definition at line 653 of file avisynth_c.h.

AVSC_API ( void  ,
avs_copy_value   
)
AVSC_API ( void  ,
avs_release_value   
)
AVSC_API ( AVS_Clip ,
avs_take_clip   
)
AVS_ScriptEnvironment* AVSC_API ( void  ,
avs_set_to_clip   
)

Definition at line 699 of file avisynth_c.h.

AVSC_INLINE int avs_is_clip ( AVS_Value  v)

Definition at line 700 of file avisynth_c.h.

Referenced by avisynth_open_file().

AVSC_INLINE int avs_is_bool ( AVS_Value  v)

Definition at line 701 of file avisynth_c.h.

AVSC_INLINE int avs_is_int ( AVS_Value  v)

Definition at line 702 of file avisynth_c.h.

Referenced by avs_as_float().

AVSC_INLINE int avs_is_float ( AVS_Value  v)

Definition at line 703 of file avisynth_c.h.

AVSC_INLINE int avs_is_string ( AVS_Value  v)

Definition at line 704 of file avisynth_c.h.

Referenced by avs_as_string().

AVSC_INLINE int avs_is_array ( AVS_Value  v)

Definition at line 705 of file avisynth_c.h.

Referenced by avs_array_elt(), and avs_array_size().

AVSC_INLINE int avs_is_error ( AVS_Value  v)

Definition at line 706 of file avisynth_c.h.

Referenced by avisynth_open_file(), avs_as_error(), and avs_as_string().

AVSC_INLINE int avs_as_bool ( AVS_Value  v)

Definition at line 708 of file avisynth_c.h.

AVSC_INLINE int avs_as_int ( AVS_Value  v)

Definition at line 710 of file avisynth_c.h.

AVSC_INLINE const char* avs_as_string ( AVS_Value  v)

Definition at line 712 of file avisynth_c.h.

AVSC_INLINE double avs_as_float ( AVS_Value  v)

Definition at line 714 of file avisynth_c.h.

AVSC_INLINE const char* avs_as_error ( AVS_Value  v)

Definition at line 716 of file avisynth_c.h.

Referenced by avisynth_open_file().

AVSC_INLINE const AVS_Value* avs_as_array ( AVS_Value  v)

Definition at line 718 of file avisynth_c.h.

AVSC_INLINE int avs_array_size ( AVS_Value  v)

Definition at line 720 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_array_elt ( AVS_Value  v,
int  index 
)

Definition at line 722 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_new_value_bool ( int  v0)

Definition at line 727 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_new_value_int ( int  v0)

Definition at line 729 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_new_value_string ( const char *  v0)

Definition at line 731 of file avisynth_c.h.

Referenced by avisynth_open_file().

AVSC_INLINE AVS_Value avs_new_value_float ( float  v0)

Definition at line 733 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_new_value_error ( const char *  v0)

Definition at line 735 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_new_value_clip ( AVS_Clip v0)

Definition at line 739 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_new_value_array ( AVS_Value v0,
int  size 
)

Definition at line 742 of file avisynth_c.h.

AVSC_API ( void  ,
avs_release_clip   
)
AVSC_API ( AVS_Clip ,
avs_copy_clip   
)
AVSC_API ( const char *  ,
avs_clip_get_error   
)
AVSC_API ( const AVS_VideoInfo ,
avs_get_video_info   
)
AVSC_API ( int  ,
avs_get_version   
)
AVSC_API ( AVS_VideoFrame ,
avs_get_frame   
)
AVSC_API ( int  ,
avs_get_parity   
)
AVSC_API ( int  ,
avs_get_audio   
)
AVSC_API ( int  ,
avs_set_cache_hints   
)
typedef AVS_Value ( AVSC_CC AVS_ApplyFunc)
AVSC_API ( AVS_Clip ,
avs_new_c_filter   
)
AVSC_API ( const char *  ,
avs_get_error   
)
AVSC_API ( int  ,
avs_get_cpu_flags   
)
AVSC_API ( int  ,
avs_check_version   
)
AVSC_API ( char *  ,
avs_save_string   
)
AVSC_API ( char *  ,
avs_sprintf   
)
const char AVSC_API ( char *  ,
avs_vsprintf   
)
AVSC_API ( int  ,
avs_add_function   
)
AVSC_API ( int  ,
avs_function_exists   
)
AVSC_API ( AVS_Value  ,
avs_invoke   
)
AVSC_API ( AVS_Value  ,
avs_get_var   
)
AVSC_API ( int  ,
avs_set_var   
)
AVSC_API ( int  ,
avs_set_global_var   
)
AVSC_API ( AVS_VideoFrame ,
avs_new_video_frame_a   
)
AVSC_INLINE AVS_VideoFrame* avs_new_video_frame ( AVS_ScriptEnvironment env,
const AVS_VideoInfo vi 
)

Definition at line 894 of file avisynth_c.h.

AVSC_INLINE AVS_VideoFrame* avs_new_frame ( AVS_ScriptEnvironment env,
const AVS_VideoInfo vi 
)

Definition at line 900 of file avisynth_c.h.

AVSC_API ( int  ,
avs_make_writable   
)
AVSC_API ( void  ,
avs_bit_blt   
)
AVSC_API ( void  ,
avs_at_exit   
)
AVSC_API ( AVS_VideoFrame ,
avs_subframe   
)
AVSC_API ( int  ,
avs_set_memory_max   
)
AVSC_API ( int  ,
avs_set_working_dir   
)
AVSC_API ( AVS_ScriptEnvironment ,
avs_create_script_environment   
)
AVSC_EXPORT const char* AVSC_CC avisynth_c_plugin_init ( AVS_ScriptEnvironment env)
AVSC_API ( void  ,
avs_delete_script_environment   
)
AVSC_API ( AVS_VideoFrame ,
avs_subframe_planar   
)

Variable Documentation

int plane

Definition at line 384 of file avisynth_c.h.

Referenced by amf_copy_surface(), apply_loop_filter(), av_frame_get_plane_buffer(), av_image_fill_black(), av_read_image_line2(), av_write_image_line2(), averageiir2d(), avisynth_read_packet_video(), await_reference_row(), bitline2chunky(), bitplanar2chunky(), blend_frame(), block_mc(), calc_combed_score(), calc_diffs(), calculate_sums(), cfhd_decode(), check_image_pointers(), clv_decode_frame(), compare_fields(), config_input(), config_output(), config_props(), copy_block(), copy_fields(), copy_pad(), copy_picture_field(), copyadd_block(), davs2_dump_frames(), decimate_frame(), decode(), decode_band_hdr(), decode_deep_tvdc32(), decode_frame(), decode_plane(), decode_slice(), decodeplane32(), decodeplane8(), deinterlace_slice(), displace_planar(), do_convolve(), do_eval(), draw_htext(), draw_htext16(), draw_ihtext(), draw_ihtext16(), drm_map_frame(), encode_frame(), evalfunc_0(), evalfunc_1(), export_plane(), ff_blend_mask(), ff_blend_rectangle(), ff_copy_rectangle(), ff_copy_rectangle2(), ff_dca_xll_filter_frame(), ff_draw_rectangle(), ff_fill_line_with_color(), ff_fill_rectangle(), ff_sws_alphablendaway(), fft_horizontal(), fft_vertical(), fill_slice_long(), filter(), filter_frame(), filter_frame_fixed(), filter_plane2d(), filter_plane3d1(), filter_plane3d2(), filter_slice(), filter_slice_alpha(), filter_slice_alpha16(), filter_slice_chroma(), filter_slice_chroma16(), geq_config_props(), geq_filter_frame(), geq_init(), get_frame(), get_input(), get_output(), get_scene_score(), get_video_buffer(), getpix(), getpix_integrate(), getpix_integrate_internal(), horizontal_frame_pack(), if(), ifft_horizontal(), ifft_vertical(), import_plane(), init_block_mapping(), init_decoder(), init_dequantizer(), initialize(), interpolate(), interpolate_refplane(), irdft_vertical(), is_frozen(), jpg_decode_block(), kmsgrab_read_header(), kmsgrab_read_packet(), lum(), lut_planar_16bits(), lut_planar_8bits(), main(), mc_row(), mc_subpel(), opencl_frames_get_constraints(), opencl_map_frame(), opencl_mem_flags_for_mapping(), opengl_get_plane_pointer(), overlay_opencl_blend(), picmemset(), planarCopyWrapper(), plot_spectrum_column(), pointer_at(), process_frame(), program_opencl_run(), put_blocks(), quantize(), rdft_vertical(), read_highpass(), read_huffman_tree(), realign_frame(), render_slice(), request_frame(), set_frame_data(), skip_check(), slice_geq_filter(), svq1_encode_plane(), uninit(), unpack_dct_coeffs(), unpack_superblocks(), unpack_vlcs(), v4l2_bufref_to_buf(), vble_restore_plane(), vp3_decode_init(), vp3_dequant(), vp56_mc(), vp56_render_mb(), xavs2_copy_frame(), xavs2_copy_frame_with_shift(), and xfade_frame().

int pixels
int c_space

Definition at line 396 of file avisynth_c.h.

const AVS_Value avs_void = {'v'}
static

Definition at line 690 of file avisynth_c.h.

Definition at line 692 of file avisynth_c.h.

int n
Examples:
filtering_audio.c, and http_multiclient.c.

Definition at line 760 of file avisynth_c.h.

Referenced by aacsbr_tableinit(), ac_get(), add_file(), add_wav(), adpcm_compress_trellis(), adpcm_decode_frame(), adpcm_encode_frame(), alac_stereo_decorrelation(), align_get_bits(), alloc_lines(), alloc_slice(), apply_lut(), apply_window_and_mdct(), arith2_get_prob(), arith2_get_scaled_value(), ascii2index(), asf_read_metadata(), asf_read_timestamp(), asf_write_header1(), asv2_get_bits(), av_get_channel_layout(), av_isxdigit(), av_parse_time(), av_parse_video_rate(), av_parse_video_size(), av_q2intfloat(), av_xiphlacing(), avcodec_default_get_format(), average_quantized_coeffs(), avi_sync(), avi_write_counters(), avi_write_header(), avi_write_trailer(), avisynth_read_packet_audio(), avisynth_read_packet_video(), avpriv_trc_smpte_st2084(), aw_pulse_set1(), aw_pulse_set2(), await_references(), biquad(), bmp_decode_frame(), bmp_encode_frame(), body(), build_table(), cabac_init_state(), calc_corr(), calc_input_response(), calc_rice_params(), celt_autocorr(), channel_decorrelation(), check_diff(), check_filter_outputs(), check_keyboard_interaction(), check_multiply3x3(), check_rgb2yuv(), check_stream_max_drift(), check_yuv2rgb(), check_yuv2yuv(), chs_assemble_msbs_lsbs(), cine_read_packet(), cinepak_decode_codebook(), clean_index(), clear_blocks_axp(), codec2_read_packet(), combine_residual_frame(), compare(), complex_divide(), complex_multiply(), compute_antialias(), compute_scale_factors(), config_input(), config_input_main(), config_output(), convert_coeffs(), copy_subcoefs(), create_all_formats(), create_cel_evals(), create_filtergraph(), create_freq_table(), create_map(), crypto_read(), dct_calc_I_c(), dct_calc_II_c(), dct_calc_III_c(), dct_quantize_refine(), dct_quantize_TMPL(), dct_quantize_trellis_c(), dct_single_coeff_elimination(), dct_unquantize_h263_inter_armv5te(), dct_unquantize_h263_inter_axp(), dct_unquantize_h263_inter_c(), dct_unquantize_h263_inter_neon(), dct_unquantize_h263_intra_armv5te(), dct_unquantize_h263_intra_axp(), dct_unquantize_h263_intra_c(), dct_unquantize_h263_intra_neon(), dct_unquantize_mpeg1_inter_c(), dct_unquantize_mpeg1_intra_c(), dct_unquantize_mpeg2_inter_c(), dct_unquantize_mpeg2_intra_bitexact(), dct_unquantize_mpeg2_intra_c(), decide_ac_pred(), decide_frame_length(), DECLARE_QUERYINTERFACE(), decode012(), decode_bgr_1(), decode_blockcodes(), decode_cabac_mb_ref(), decode_cabac_residual_dc(), decode_cabac_residual_dc_422(), decode_cabac_residual_internal(), decode_cabac_residual_nondc(), decode_coeffs(), decode_decorrelation_matrix(), decode_dynamic_range(), decode_exp_vlc(), decode_frame(), decode_frame_header(), decode_gain_info(), decode_init_static(), decode_mode(), decode_plane_bitstream(), decode_plte_chunk(), decode_residual(), decode_spectrum_and_dequant(), decode_splitmvs(), decode_vbmtree(), decorrelation(), dequant_lsp10r(), dequant_lsp16r(), dequant_lsps(), detect_peak(), dhav_read_seek(), dht(), direct(), dnn_execute_layer_pad(), dnxhd_calc_bits_thread(), dnxhd_decode_dct_block(), dnxhd_encode_block(), dnxhd_encode_thread(), do_convolve(), do_interpolation(), dot_prod(), dot_prods(), dpcm_decode_frame(), dqt(), draw_curves(), dshow_cycle_formats(), dst_calc_I_c(), e2_m16(), elliott(), encode_block(), encode_residual_ch(), encode_residual_fixed(), encode_strip(), estimate_stereo_mode(), evolve(), evrc_decode_init(), factorization(), fadst4_1d(), fadst_1d(), fcmul_add_c(), fdct_1d(), ff_ac3_float_mdct_init(), ff_acelp_apply_order_2_transfer_function(), ff_acelp_interpolate(), ff_acelp_interpolatef(), ff_af_queue_remove(), ff_alsa_get_device_list(), ff_cbs_trace_syntax_element(), ff_celp_circ_addf(), ff_celp_lp_synthesis_filter(), ff_celp_lp_synthesis_filterf(), ff_celp_lp_zero_synthesis_filterf(), ff_dash_fill_tmpl_params(), ff_dca_core_dequantize(), ff_dca_core_filter_fixed(), ff_dca_vlc_calc_alloc_bits(), ff_dca_vlc_calc_quant_bits(), ff_dca_vlc_enc_alloc(), ff_dca_vlc_enc_quant(), ff_dct_init(), ff_dct_unquantize_h263_inter_mmi(), ff_dct_unquantize_h263_intra_mmi(), ff_dct_unquantize_mpeg1_inter_mmi(), ff_dct_unquantize_mpeg1_intra_mmi(), ff_dct_unquantize_mpeg2_intra_mmi(), ff_decklink_write_header(), ff_els_decode_unsigned(), ff_er_frame_end(), ff_fft_end(), ff_fft_init(), ff_g729_adaptive_gain_control(), ff_get_format(), ff_hevc_hls_residual_coding(), ff_huffyuv_generate_bits_table(), ff_imdct_calc_c(), ff_imdct_half_c(), ff_init_slice_from_src(), ff_kbd_window_init(), ff_kbd_window_init_fixed(), ff_log2_16bit_c(), ff_log2_c(), ff_matrix_mul_3x3(), ff_mdct_calc_c(), ff_mdct_calcw_c(), ff_mdct_init(), ff_mjpeg_decode_dht(), ff_mpeg12_find_best_frame_rate(), ff_mpeg4_pred_ac(), ff_mpeg4_pred_dc(), ff_msmpeg4_coded_block_pred(), ff_msmpeg4_decode_block(), ff_msmpeg4_encode_block(), ff_msmpeg4_pred_dc(), ff_rdft_init(), ff_rfps_add_frame(), ff_rfps_calculate(), ff_rm_reorder_sipr_data(), ff_rotate_slice(), ff_rtsp_open_transport_ctx(), ff_scale_vector_to_given_sum_of_squares(), ff_sine_window_init(), ff_subtitles_next_line(), ff_subtitles_read_text_chunk(), ff_thread_await_progress(), ff_thread_report_progress(), ff_thread_report_progress2(), ff_tx_gen_compound_mapping(), ff_tx_init_mdct_fft(), ff_vc1_mc_4mv_luma(), ff_vc1_pred_dc(), ff_vc1_pred_mv(), ff_vc1_pred_mv_intfr(), ff_vorbis_comment(), ff_vp9_decode_block(), ff_wma_init(), ffprobe_show_pixel_formats(), fft_channel(), fft_horizontal(), fft_perm_avx(), fft_ref(), fft_ref_init(), fft_vertical(), fill_gamma_table(), fill_ones(), fill_quantization_matrices(), fill_tileX(), fill_vaapi_RefPicList(), filter_2_1(), filter_5_0_side(), filter_5_1_back(), filter_5_1_side(), filter_dbl(), filter_dblp(), filter_flt(), filter_fltp(), filter_frame(), filter_frame_fixed(), filter_frame_float(), filter_stereo(), filter_surround(), find_and_decode_index(), find_inliers(), find_next_start_code(), fir_quantum(), flat_print_section_header(), free_lines(), ftx(), gate(), generate_window_func(), get_amv(), get_avg_color(), get_base128(), get_bits(), get_bits_align32(), get_bits_count(), get_bits_le(), get_bits_long(), get_block(), get_channel_idx(), get_input(), get_lowest_part_list_y(), get_lowest_part_y(), get_nb_points(), get_num(), get_qcx(), get_shift(), get_slice_offset(), gif_read_header(), gif_read_header1(), graph_config_pointers(), guess_ni_flag(), h261_decode_block(), h261_encode_block(), h263_decode_block(), h263_encode_block(), hcom_decode(), hdcd_analyze_prepare(), hl_motion(), huf_canonical_code_table(), hybrid_synthesis(), ifft_channel(), ifft_horizontal(), ifft_vertical(), iir_filter(), imdct_and_windowing_eld(), imdct_calc(), ini_print_section_header(), init(), init_audio(), init_coef_vlc(), init_exp(), init_multbl2(), init_mv_table(), init_tone_level_dequantization(), inter_recon(), interpolate(), intra_recon(), invert_initial_buffer(), is_transp(), iszero(), ivr_read_header(), jp2_find_codestream(), jpeg_create_huffman_table(), kalman_smoothen(), l1_unscale(), lavfi_read_header(), libAVMemInputPin_ReceiveMultiple(), list_voices(), ljpeg_decode_yuv_scan(), LLVMFuzzerTestOneInput(), lsf_check_stability(), mace_broken_clip_int16(), main(), make_filters_from_proto(), max_nbits(), mc_dir_part(), mc_part_std(), mc_part_weighted(), mdec_decode_block_intra(), memset_bpc(), merge_superframe(), mjpeg_decode_scan(), modnpf(), mov_write_tfrf_tag(), mp_decode_layer1(), mp_decode_layer3(), mpc8_dec_enum(), mpeg1_decode_block_inter(), mpeg1_encode_block(), mpeg1_fast_decode_block_inter(), mpeg2_decode_block_intra(), mpeg2_decode_block_non_intra(), mpeg2_fast_decode_block_intra(), mpeg2_fast_decode_block_non_intra(), mpeg4_decode_block(), mpeg4_decode_dpcm_macroblock(), mpeg4_encode_block(), mpeg4_get_block_length(), mpegts_write_packet_internal(), multiple_resample(), mux_frames(), mxf_compute_ptses_fake_index(), myrnd(), new_audio_stream(), next_segment(), opt_map_channel(), pam_encode_frame(), parse_aux_data(), parse_coding_header(), parse_commands(), parse_forced_key_frames(), parse_intervals(), parse_line(), parse_mapping(), parse_psfile(), parse_read_intervals(), parse_subframe_audio(), parse_x96_coding_header(), parse_x96_subframe_audio(), pcm_decode_frame(), pcm_encode_frame(), picmemset_8bpp(), plot_freqs(), pnm_decode_frame(), pnm_encode_frame(), postfilter(), postprocess(), pred_block_dc(), pred_intra_mode(), pred_motion(), pred_mv(), pred_non_zero_count(), pred_spatial_direct_motion(), preprocess(), print_frame(), process_channels(), process_client(), process_frame(), process_subpacket_9(), ps_add_squares_c(), ps_decorrelate_c(), ps_hybrid_analysis_c(), ps_hybrid_synthesis_deint_c(), ps_mul_pair_single_c(), ps_stereo_interpolate_c(), ps_stereo_interpolate_ipdopd_c(), pullup_get_frame(), purge_dialogues(), push_single_pic(), put_bits(), put_bits_le(), put_huffman_table(), qdm2_fft_decode_tones(), qdm2_parse_packet(), qdm2_restore_block(), quant_band_template(), ra144_encode_subblock(), rdft_calc_c(), rdt_parse_sdp_line(), read_huffman_tree(), read_key(), read_len_table(), read_mv_component(), read_packet(), read_sb_block(), read_ts(), read_vblock(), realtext_read_header(), recheck_discard_flags(), record_block(), relative_align_get_bits(), request_frame(), resample_common_TMPL(), resample_linear_TMPL(), residual_filter(), restore_ac_coeffs(), restore_tqb_pixels(), rice_count_exact(), ripemd128_transform(), ripemd160_transform(), ripemd256_transform(), ripemd320_transform(), rm_read_index(), rm_write_header(), roq_write_header(), rtmp_open(), rtp_read(), rtp_send_samples(), rtp_write_header(), rtsp_write_packet(), run_channel_fft(), sami_read_header(), sample_noise_block(), sap_fetch_packet(), sbr_qmf_synthesis(), sbr_sum_square_c(), scale_mv(), scaleforopp(), scaleforopp_x(), scaleforopp_y(), scaleforsame(), scaleforsame_x(), scaleforsame_y(), scaling_list_data(), sequence_header_obu(), set_idx(), set_noise_profile(), set_string_bool(), set_tile_offset(), shift_data(), silk_decode_frame(), skip_bits_long(), skip_put_bits(), skip_put_bytes(), smjpeg_write_header(), sniff_channel_order(), stabilize_lsps(), stats(), store_table(), svq1_decode_block_intra(), svq1_decode_block_non_intra(), svq3_pred_motion(), swf_probe(), synth_block(), synth_block_fcb_acb(), synth_block_hardcoded(), synth_frame(), synth_superframe(), synthfilt_build_sb_samples(), take_samples(), targa_decode_rle(), targa_encode_normal(), test_add_squares(), test_hybrid_analysis(), test_mul_pair_single(), test_sum_square(), tqi_decode_mb(), true_peak_limiter(), try_push_frame(), uninit(), update_model1_to_2(), update_model1_to_4(), update_model1_to_5(), update_model2_to_3(), update_model2_to_6(), update_model3_to_7(), update_model4_to_5(), update_model5_to_6(), update_model6_to_7(), upmix_1_0(), upmix_2_1(), upmix_3_0(), upmix_3_1(), upmix_3_1_surround(), upmix_4_0(), upmix_4_1(), upmix_5_0_back(), upmix_5_1_back(), upmix_5_1_back_2_1(), upmix_5_1_back_surround(), upmix_6_0(), upmix_6_1(), upmix_7_0(), upmix_7_1(), upmix_7_1_5_0_side(), upmix_7_1_5_1(), upmix_stereo(), vaapi_device_create(), vaapi_encode_h264_default_ref_pic_list(), vaapi_encode_h264_init_slice_params(), vaapi_encode_profile_entrypoint(), vaapi_mpeg2_start_frame(), vaapi_mpeg4_start_frame(), vaapi_vc1_start_frame(), validate_codec_tag(), var_read_string(), var_size_bme(), vc1_coded_block_pred(), vc1_decode_i_block(), vc1_decode_i_block_adv(), vc1_decode_intra_block(), vc1_i_pred_dc(), video_audio_display(), vp9_superframe_close(), vp9_superframe_filter(), vp9_superframe_flush(), vp9_superframe_init(), wav_decode(), webp_get_vlc(), weighted_avg_elliott_mul5_m16(), wiener_denoise(), wma_decode_block(), wma_lsp_to_curve(), wma_window(), wmavoice_decode_init(), wmavoice_flush(), wmv2_decode_inter_block(), write_index(), wtvfile_read_packet(), x8_decode_intra_mb(), xcorrelate_fast(), xcorrelate_slow(), xml_export(), xor_fast(), and yuv4_generate_header().

void* buf
Examples:
avio_reading.c, decode_video.c, http_multiclient.c, and qsvdec.c.

Definition at line 766 of file avisynth_c.h.

Referenced by a64multi_encode_frame(), aa_probe(), aa_read_packet(), aac_decode_frame(), aac_encode_init(), aasc_decode_frame(), ac3_decode_frame(), ac3_eac3_probe(), activate(), add_metadata(), adpcm_decode_frame(), adpcm_encode_frame(), adts_aac_probe(), adts_write_packet(), adx_decode_frame(), adx_parse(), aic_decode_frame(), decklink_allocator::AllocateBuffer(), amf_tag_contents(), amrnb_decode_frame(), amrwb_decode_frame(), anti_sparseness(), ape_decode_frame(), apm_read_header(), apng_write_trailer(), append_dht_segment(), argo_asf_read_header(), asf_parse_packet(), asf_read_properties(), asf_read_value(), asf_set_metadata(), asf_write_header1(), asf_write_markers(), asink_query_formats(), ass_probe(), ass_split(), ass_split_section(), atrac1_decode_frame(), atrac3_decode_frame(), audio_write_packet(), aura_decode_frame(), av1_filter_obus(), av1_parser_split(), av_bprint_is_complete(), av_bsf_list_parse_str(), av_buffer_create(), av_buffer_make_writable(), av_buffer_pool_buffer_get_opaque(), av_buffer_pool_get(), av_buffer_realloc(), av_buffer_ref(), av_filename_number_test(), av_fourcc_make_string(), av_frame_get_plane_buffer(), av_frame_get_qp_table(), av_frame_new_side_data(), av_frame_new_side_data_from_buf(), av_frame_set_qp_table(), av_get_frame_filename2(), av_get_pix_fmt_string(), av_get_sample_fmt_string(), av_get_token(), av_hash_final_b64(), av_hash_final_bin(), av_hash_final_hex(), av_hwdevice_ctx_alloc(), av_hwframe_ctx_alloc(), av_image_alloc(), av_new_packet(), av_opt_get(), av_opt_serialize(), av_packet_make_writable(), av_packet_merge_side_data(), av_probe_input_buffer2(), av_samples_alloc(), av_strnlen(), av_timecode_make_mpeg_tc_string(), av_timecode_make_smpte_tc_string(), av_timecode_make_string(), av_ts_make_string(), av_ts_make_time_string(), av_vorbis_parse_init(), avcodec_open2(), avfilter_graph_dump(), avformat_find_stream_info(), avpriv_dict_set_timestamp(), avpriv_dv_produce_packet(), avs2_parse(), avs_decode_frame(), binary_export(), bmp_decode_frame(), bmp_encode_frame(), bmp_parse(), bmv_aud_decode_frame(), bprint_escaped_path(), bsf_parse_single(), buffer_needs_copy(), buffer_pool_free(), bytestream2_init(), bytestream2_init_writer(), cavs_decode_frame(), cavsvideo_parse(), cdg_border_preset(), cdg_tile_block(), cdtoons_decode_frame(), cdxl_decode_frame(), channelmap_init(), check_append_extra_bits(), check_decorrelate_stereo(), check_header_mismatch(), check_keyboard_interaction(), check_mc(), chs_filter_band_data(), cinaudio_decode_frame(), cinepak_decode_frame(), cinvideo_decode_frame(), clean_layout(), clv_decode_frame(), cmv_decode_frame(), common_init(), comp_interp_index(), comp_ppf_coeff(), compact_print_str(), compute_imdct(), config_output(), config_props(), convert_sub_to_old_ass_form(), cook_decode_frame(), cook_parse(), copy_moof(), copy_tag(), count_hq_slice(), crc_write_trailer(), create_ass_text(), cudaupload_init(), cyuv_decode_frame(), dash_write_packet(), dca_parse(), decode(), decode_block(), decode_bytes(), decode_chunks(), decode_dc(), decode_fill(), decode_frame(), decode_frame_common(), decode_init(), decode_luma_residual(), decode_packet(), decode_slice_thread(), decode_tag(), decode_user_data(), decode_zbuf(), decrypt_init(), default_print_section_footer(), default_print_section_header(), determine_bitrate(), dfa_decode_frame(), dilate_init(), dirac_parse(), disp_tree(), dlsym_prefixed(), dnxhd_decode_frame(), dnxhd_encode_picture(), dnxhd_parse(), do_encrypt(), do_init_filter(), double2int64str(), dpx_parse(), draw_edges_8_c(), drawtext(), dss_sp_decode_frame(), dts_probe(), dump_curves(), dump_stream_format(), dv_encode_video_segment(), dv_inject_metadata(), dvaudio_parse(), dvbsub_decode(), dvbsub_parse(), dvbsub_parse_object_segment(), dvbtxt_probe(), dvdsub_parse(), dvvideo_decode_frame(), dwt_plane(), dxa_read_packet(), ebml_free(), efi_read(), encode_apng(), encode_block(), encode_frame(), encode_slices(), encode_zlibprime(), end_ebml_master_crc32(), end_ebml_master_crc32_preliminary(), enqueue_packet(), epic_jb_decode_tile(), evrc_decode_frame(), extract_header(), fast_convolute(), fast_convolute2(), fast_convolute_nonlinear(), ff_aac_ac3_parse(), ff_alloc_packet2(), ff_amrwb_lsp2lpc(), ff_ape_parse_tag(), ff_ass_split_dialog2(), ff_ass_split_override_codes(), ff_av1_extract_obu(), ff_av1_filter_obus_buf(), ff_bufqueue_add(), ff_bufqueue_discard_all(), ff_cbs_write_packet(), ff_decklink_write_trailer(), ff_dnn_load_model_native(), ff_dsd2pcm_translate(), ff_emulated_edge_mc(), ff_framehash_write_header(), ff_get_cpu_flags_ppc(), ff_h263_decode_frame(), ff_hevc_annexb2mp4(), ff_http_get_shutdown_status(), ff_http_match_no_proxy(), ff_id3v1_read(), ff_id3v2_write_apic(), ff_init_cabac_decoder(), ff_init_range_encoder(), ff_init_vlc_sparse(), ff_isom_write_avcc(), ff_isom_write_hvcc(), ff_ivi_decode_frame(), ff_lzf_uncompress(), ff_mjpeg_decode_frame(), ff_mjpeg_escape_FF(), ff_mlp_calculate_parity(), ff_mov_add_hinted_packet(), ff_mpeg4video_split(), ff_opus_parse_packet(), ff_rdt_calc_response_and_checksum(), ff_rdt_parse_packet(), ff_rtmpe_update_keystream(), ff_rtp_check_and_send_back_rr(), ff_rtp_send_h263_rfc2190(), ff_rtp_send_punch_packets(), ff_rtp_send_rtcp_feedback(), ff_rtp_set_remote_url(), ff_rtsp_open_transport_ctx(), ff_rtsp_tcp_write_packet(), ff_rv34_decode_frame(), ff_sauce_read(), ff_snappy_uncompress(), ff_spdif_probe(), ff_srtp_encrypt(), ff_srtp_set_crypto(), ff_subtitles_next_line(), ff_tlog_link(), ff_tlog_ref(), ff_tls_open_underlying(), ff_twinvq_decode_frame(), ff_udp_set_remote_url(), ff_vdpau_add_buffer(), ff_videotoolbox_alloc_frame(), ff_vorbis_comment(), ff_vp56_decode_frame(), ff_vp56_init_range_decoder(), ff_wms_parse_sdp_a_line(), ff_yuv2rgb_init_tables_ppc(), ffio_read_indirect(), ffio_rewind_with_probe_data(), ffmmal_add_packet(), fileTest(), filter(), filter_channel(), filter_frame(), find_image_range(), find_index_range(), find_new_headers(), find_next_start_code(), fir_quantum(), fits_read_packet(), flac_decode_frame(), flac_init(), flac_parse(), flat_print_section_header(), flat_print_str(), flic_decode_frame(), flush(), flush_packet(), flv_data_packet(), framecrc_write_packet(), ftp_auth(), ftp_connect_control_connection(), ftp_connect_data_connection(), ftp_status(), g2m_decode_frame(), g723_1_decode_frame(), g723_1_parse(), g726_reset(), g729_parse(), gen_sub_ass(), gen_sub_text(), generate_codebook(), get_asf_string(), get_frame_buffer(), get_frame_internal(), get_interleaved_se_golomb(), get_interleaved_ue_golomb(), get_level_prefix(), get_line(), get_metadata(), get_metadata_size(), get_packet_size(), get_pts(), get_se_golomb(), get_se_golomb_long(), get_sidx_size(), get_sockaddr(), get_stats(), get_tag(), get_ue_golomb(), get_ue_golomb_31(), get_ue_golomb_long(), get_ur_golomb(), get_ur_golomb_jpegls(), get_word_until_chars(), gif_parse(), gif_read_packet(), gopher_open(), gsm_decode_frame(), gsm_parse(), gsm_probe(), guess_channel_layout(), h261_decode_frame(), h261_parse(), h263_parse(), h264_decode_frame(), h264_mp4toannexb_filter(), h264_parse(), h264_slice_init(), h264_split(), handle_connect_error(), hevc_idct_16x16_msa(), hevc_parse(), hevc_split(), hex_log(), hls_start(), http_buf_read(), http_open_cnx_internal(), http_shutdown(), id3v2_read_internal(), idcin_decode_frame(), iff_read_header(), ilbc_decode_frame(), imc_decode_frame(), imdct_and_windowing(), imdct_and_windowing_960(), imdct_and_windowing_eld(), imdct_and_windowing_ld(), import_pem(), ini_print_section_header(), ini_print_str(), init(), init_dict(), init_out(), init_stream(), insert_datetime(), intlist_read(), ipvideo_decode_frame(), ir2_decode_frame(), is_image(), jpeg_parse(), json_print_int(), json_print_item_str(), json_print_section_header(), kvag_read_header(), lag_decode_frame(), latm_parse(), libaribb24_handle_regions(), libAVMemInputPin_Receive(), libdav1d_data_free(), libdav1d_picture_allocator(), libdav1d_picture_release(), libgsm_decode_frame(), libopenjpeg_decode_frame(), libspeex_decode_frame(), libsrt_open(), libsrt_setup(), libx265_param_parse_float(), libx265_param_parse_int(), lmlm4_probe(), load_metadata(), loas_probe(), lxf_sync(), m101_decode_frame(), mace_decode_frame(), main(), make_lpc_coefs(), make_vitc_tc_string(), map_to_opts(), matroska_decode_buffer(), matroska_parse_laces(), matroska_parse_tracks(), matroska_parse_webvtt(), md5_close(), mimic_decode_frame(), mjpegb_decode_frame(), mkv_assemble_cues(), mlp_parse(), mlp_thd_probe(), mm_decode_frame(), mov_create_chapter_track(), mov_flush_fragment(), mov_flush_fragment_interleaving(), mov_metadata_loci(), mov_metadata_track_or_disc_number(), mov_read_ddts(), mov_read_default(), mov_read_dfla(), mov_read_rtmd_track(), mov_read_stsz(), mov_rewrite_dvd_sub_extradata(), mov_text_decode_frame(), mov_write_ac3_tag(), mov_write_dvc1_tag(), mov_write_eac3_tag(), mov_write_track_udta_tag(), mov_write_udta_sdp(), mov_write_udta_tag(), mp3_header_decompress(), mp3_read_probe(), mp3_write_trailer(), mp_decode_frame(), mpc7_decode_frame(), mpc7_decode_init(), mpc8_decode_frame(), mpc8_parse_seektable(), mpeg4video_parse(), mpeg_decode_frame(), mpeg_mux_write_packet(), mpegaudio_parse(), mpegps_read_packet(), mpegts_get_pcr(), mpegts_insert_null_packet(), mpegts_insert_pcr_only(), mpegts_push_data(), mpegts_write_packet_internal(), mpegts_write_pes(), mpegts_write_section(), mpegvideo_extract_headers(), mpegvideo_parse(), mpl2_decode_frame(), mpsub_read_header(), msrle_decode_frame(), mss2_decode_frame(), mss3_decode_frame(), mss4_decode_frame(), mxf_add_timecode_metadata(), mxf_parse_h264_frame(), mxpeg_decode_frame(), nelly_decode_block(), new_output_stream(), ogg_replace_stream(), ogg_write_page(), old_dirac_header(), oma_read_header(), oma_read_probe(), omx_encode_frame(), on2avc_decode_frame(), on2avc_reconstruct_channel(), on2avc_reconstruct_channel_ext(), open_null_ctx(), opt_list(), opt_recording_timestamp(), opt_show_format_entry(), opus_decode_packet(), opus_find_frame_end(), param_write_hex(), parse(), parse_atoms(), parse_channel_expressions(), parse_channel_name(), parse_chunks(), parse_command(), parse_link_name(), parse_map(), parse_options(), parse_opus_ts_header(), parse_psfile(), parse_speaker_pos(), parse_timecode_in_framenum_format(), pcx_encode_frame(), pcx_probe(), png_parse(), pnm_decode_frame(), pnm_parse(), pool_alloc_buffer(), pool_release_buffer(), postfilter(), postfilter_5k0(), predictor_calc_error(), print_digraph(), print_file(), print_report(), print_shader(), probe(), process_client(), prompeg_open(), prompeg_write_fec(), prores_encode_frame(), prores_encode_picture(), prores_metadata(), ptx_decode_frame(), push_single_pic(), put_flac_codecpriv(), put_swf_matrix(), put_swf_rect(), pva_probe(), pvq_band_cost(), qcelp_decode_frame(), qcp_read_header(), qdm2_decode_frame(), query_formats(), ra144_decode_frame(), ra288_decode_frame(), ratecontrol_1pass(), raw_decode(), read_access_unit(), read_file(), read_header_gme(), read_header_openmpt(), read_header_vs(), read_huffman_tables(), read_packet(), read_sb_block(), read_shape_from_file(), read_vblock(), read_whole_file(), realtext_decode_frame(), realtext_probe(), realtext_read_header(), release_frame_buffer(), replace_int_data_in_filename(), replace_str_data_in_filename(), request_frame(), residue_encode(), rl2_decode_frame(), rm_read_audio_stream_info(), rm_read_header(), rm_read_metadata(), roq_decode_frame(), rtmp_open(), rtmp_packet_read_one_chunk(), rtmp_write(), rtp_asf_fix_header(), rtp_mpegts_write_packet(), rtp_open(), rtp_parse_one_packet(), rtsp_parse_range_npt(), rtsp_read_setup(), run_psnr(), rv10_decode_frame(), rv34_parse(), s302m_decode_frame(), s337m_probe(), sami_probe(), sami_read_header(), sap_write_header(), save_avio_options(), sbc_parse(), sbg_read_header(), scale_frame(), scan_buffer(), scc_probe(), sctp_open(), segment_end(), segment_list_print_entry(), select_frame(), send_silence(), seqvideo_decode_frame(), set_colorquant_ratio_meta(), set_options(), set_segment_filename(), set_spdif(), set_string_number(), setup_partitions(), shift_data(), shorten_decode_frame(), show_help_options(), sipr_decode_frame(), sipr_parse(), skeleton_header(), skip_space(), slice_decode_thread(), smc_decode_frame(), smka_decode_frame(), sp5x_decode_frame(), speedhq_decode_frame(), srt_probe(), srt_read_header(), srtp_open(), ssim_plane(), subviewer_decode_frame(), sunrast_decode_frame(), sup_probe(), svq1_decode_frame(), svq3_decode_frame(), svq3_decode_init(), swf_probe(), swf_read_packet(), swr_build_matrix(), synth_percept_filter(), tak_parse(), take_samples(), tcp_open(), test(), test_encrypt(), text_decode_frame(), tgq_decode_frame(), tgv_decode_frame(), tgv_decode_inter(), tqi_decode_frame(), truemotion2rt_decode_header(), truespeech_decode_frame(), try_push_frame(), tscc2_decode_frame(), tta_decode_frame(), udp_open(), ulti_decode_frame(), unescape(), uninit(), unpack_yuv(), update_benchmark(), update_md5_sum(), v4l2_dequeue_v4l2buf(), vaapi_encode_output(), value_string(), vc1_decode_frame(), vc1_parse(), vc1_split(), video_refresh(), decklink_input_callback::VideoInputFrameArrived(), viv_read_header(), vivo_probe(), vmdaudio_decode_frame(), vorbis_decode_frame(), vorbis_parse_audio_packet(), vp3_decode_frame(), vsink_query_formats(), vtenc_frame(), vtenc_populate_extradata(), wait_frame(), wavpack_decode_frame(), wavpack_encode_frame(), webm_dash_manifest_cues(), webm_dash_manifest_read_header(), webvtt_decode_frame(), wma_decode_superframe(), wrap_texture_buf(), write_access_unit(), write_packet(), write_streaminfo(), write_substrs(), writer_print_data_hash(), writer_print_rational(), writer_print_time(), ws_snd_decode_frame(), xbm_encode_frame(), xface_decode_frame(), xface_encode_frame(), xma_parse(), xml_export(), xml_print_str(), xwd_decode_frame(), xwd_encode_frame(), yuv2bgr24_2_TMPL(), yuv2rgb32_2_TMPL(), yuv2rgb555_2_TMPL(), yuv2rgb565_2_TMPL(), and yuv2yuyv422_2_TMPL().

void INT64 start

Definition at line 766 of file avisynth_c.h.

Referenced by aa_read_header(), ac3_bit_alloc_calc_bap_c(), apply_intensity_stereo(), apply_mid_side_stereo(), apply_scalefactors(), apply_tns(), ast_write_header(), atrac9_decode_block(), av1_filter_obus(), avoid_clipping(), avpriv_new_chapter(), buffer_needs_copy(), build_frame_code(), calc_thr_3gpp(), cbs_h2645_split_fragment(), cbs_jpeg_split_fragment(), cbs_mpeg2_split_fragment(), check_header_mismatch(), check_nan_suffix(), cmp_func_names(), codebook_trellis_rate(), complex_divide(), complex_multiply(), compute_rematrixing_strategy(), config_output(), deband_16_c(), deband_16_coupling_c(), deband_8_c(), deband_8_coupling_c(), decode_format80(), decode_frame(), decode_info_header(), decode_p_block(), decode_rle(), decode_slice(), decode_speedhq_field(), decode_subframe(), decouple_info(), deinterlace_slice(), dequantize(), dirac_decode_frame_internal(), dnn_execute_layer_pad(), draw_carpet_slice(), draw_sample_cline_gray(), draw_sample_cline_rgba_full(), draw_sample_cline_rgba_scale(), draw_sample_line_gray(), draw_sample_line_rgba_full(), draw_sample_line_rgba_scale(), draw_sample_p2p_gray(), draw_sample_p2p_rgba_full(), draw_sample_p2p_rgba_scale(), draw_triangle_slice(), encode_frame(), encode_spectral_coeffs(), encode_window_bands_info(), envelope_instant(), envelope_instant16(), envelope_peak(), envelope_peak16(), extension_data(), extra_information(), ff_aac_adjust_common_pred(), ff_aac_apply_tns(), ff_aac_is_encoding_err(), ff_aac_search_for_is(), ff_aac_search_for_ltp(), ff_ac3_apply_rematrixing(), ff_ac3_bit_alloc_calc_mask(), ff_ac3_bit_alloc_calc_psd(), ff_h263_find_resync_marker_reverse(), ff_hevc_annexb2mp4(), ff_hevc_parse_sps(), ff_http_match_no_proxy(), ff_init_slice_from_src(), ff_isom_write_avcc(), ff_isom_write_hvcc(), ff_mjpeg_escape_FF(), ff_mpeg4_init_partitions(), ff_mpv_encode_picture(), ff_opus_psy_celt_frame_process(), ff_read_riff_info(), ff_rl_init(), ff_rtsp_open_transport_ctx(), ff_wma_init(), ffmmal_add_packet(), fft_horizontal(), fft_vertical(), fill_colmap(), filter_channel(), filter_channels(), filter_dbl(), filter_dblp(), filter_flt(), filter_fltp(), filter_frame(), filter_slice(), find_black_and_white(), find_index(), find_resync_marker_reverse(), fir_channels(), flac_fifo_read(), flac_fifo_read_wrap(), flac_read_header(), ftp_current_dir(), ftp_passive_mode(), ftp_passive_mode_epsv(), ftp_read_dir(), g723_1_encode_frame(), get_duration(), get_event_info(), get_lag(), get_palette_frame(), get_pts(), get_sockaddr(), get_utf8_length_at(), gxf_resync_media(), hls_read(), hnm_update_palette(), id3v2_read_internal(), ifft_horizontal(), ifft_vertical(), imc_read_level_coeffs(), init_cqt(), ir2_decode_frame(), libAVFilter_Run(), lz_copy(), main(), make_bands(), mark_pns(), matroska_read_header(), microdvd_load_tags(), mmf_rate(), mov_parse_vc1_frame(), mov_read_chpl(), mov_write_dvc1_structs(), mov_write_traf_tag(), mpjpeg_get_boundary(), mpjpeg_read_packet(), mpl2_probe(), mpsub_read_header(), mxf_write_partition(), new_video_stream(), ogg_buffer_data(), output_chunk_list(), parse_file(), parse_indices(), parse_interval(), parse_link_name(), pjs_probe(), postProcess_TMPL(), predictor_decode_mono_3800(), predictor_decode_stereo_3800(), print_shader(), probe(), process_channels(), process_slice(), psy_3gpp_init(), put_payload_parsing_info(), rac_get_model256_sym(), read_chapter(), read_chunk(), read_coeffs_fine(), read_dialogue(), read_header(), read_huffman_tables(), read_ts(), read_var_block_data(), resample_cubic(), resample_linear(), resolve_content_path(), rnnoise_channels(), rsd_read_header(), safe_filename(), scale_band_ext_coeffs(), search_for_ms(), search_for_pns(), search_for_quantizers_anmr(), search_for_quantizers_fast(), search_for_quantizers_twoloop(), set_spdif(), sgi_rle_encode(), srtp_read(), stereo_processing(), str_read_header(), subsampling_bounds(), synth_tones(), targa_decode_rle(), test_hf_gen(), tiff_decode_tag(), unpack_parse_unit(), url_alloc_for_protocol(), v4l2_dequeue_v4l2buf(), vaapi_encode_pick_next(), var_diamond_search(), vb_decode_palette(), vc1_decode_frame(), vc1_decode_init(), viv_read_packet(), wavpack_encode_block(), webm_dash_manifest_write_header(), wmapro_window(), write_abst(), write_chapter(), write_packet(), and yae_load_frag().

Definition at line 766 of file avisynth_c.h.

int cachehints

Definition at line 771 of file avisynth_c.h.

int int frame_range

Definition at line 771 of file avisynth_c.h.

Definition at line 807 of file avisynth_c.h.

Referenced by config_input(), decode_frame(), decode_tones_amplitude(), and filter_frame().

Definition at line 807 of file avisynth_c.h.

int version

Definition at line 858 of file avisynth_c.h.

Referenced by adpcm_compress_trellis(), aiff_read_header(), amf_parse_object(), ape_probe(), atrac3_decode_init(), atrac9_decode_init(), cbs_h2645_split_fragment(), celt_header(), check_file_header(), cine_read_header(), codec2_read_header(), decode_frame(), decode_frame_header(), decode_header(), decode_init(), dfa_decode_frame(), dfa_read_header(), drm_device_create(), dss_read_header(), ff_dnn_load_model_native(), ff_opus_parse_extradata(), ff_vk_init_shader(), fsb_read_header(), fwse_read_header(), get_packet_header(), hca_read_header(), iff_read_header(), ilog2(), init(), libcelt_dec_init(), magy_decode_frame(), main(), mkv_write_header(), mmf_rate(), mov_cenc_write_saio_tag(), mov_parse_stsd_audio(), mov_read_chpl(), mov_read_coll(), mov_read_elst(), mov_read_mdhd(), mov_read_mvhd(), mov_read_pssh(), mov_read_saio(), mov_read_sbgp(), mov_read_sidx(), mov_read_smdm(), mov_read_sv3d(), mov_read_tenc(), mov_read_tfdt(), mov_read_tkhd(), mov_read_vpcc(), mov_write_audio_tag(), mov_write_edts_tag(), mov_write_mdhd_tag(), mov_write_mvhd_tag(), mov_write_tkhd_tag(), mp3_parse_info_tag(), musx_read_header(), mv_read_header(), mxf_write_identification(), opengl_read_limits(), parse_decoder_init(), parse_psfile(), pixlet_decode_frame(), process_line(), read_header(), read_tfra(), rm_read_audio_stream_info(), rsd_read_header(), set_spdif(), shn_probe(), smjpeg_read_header(), spdif_header_mpeg(), swf_write_header(), txd_decode_frame(), update_av_program_info(), vble_decode_frame(), voc_probe(), voc_write_header(), vp9_encode_set_roi(), wsd_read_header(), and xwd_decode_frame().

const char* s

Definition at line 860 of file avisynth_c.h.

const char int length

Definition at line 860 of file avisynth_c.h.

const char const char * fmt
const char const AVS_Value val

Definition at line 863 of file avisynth_c.h.

Referenced by aa_read_header(), add_entry1(), add_opt(), addroi_config_input(), adpcm_decode_frame(), aic_decode_coeffs(), alac_linear_predictor(), all_same(), apcm_dequant_add(), apply_param_change(), arith2_get_number(), arith2_get_prob(), arith_get_bits(), arith_get_number(), arith_get_prob(), ascii_to_wc(), aura_decode_frame(), av_freep(), av_get_colorspace_name(), av_opt_get_key_value(), av_opt_set_defaults2(), av_packet_unpack_dictionary(), av_read_image_line2(), av_reallocp(), av_reallocp_array(), av_small_strptime(), av_sqrt_sf(), av_write_image_line2(), avio_rb16(), avio_rb24(), avio_rb32(), avio_rb64(), avio_rl16(), avio_rl24(), avio_rl32(), avio_rl64(), avisynth_open_file(), aw_pulse_set1(), binkb_get_value(), build_vlc(), bytestream2_get_levarint(), cdtoons_render_sprite(), celt_cwrsi(), check_mc(), clip_with_log(), codeblock(), codecctl_int(), compress_alpha(), compute_gammaval(), compute_gammaval709(), config_input(), config_output(), config_props(), copyadd_block(), create_default_qtables(), date_get_num(), dc_127_16x16_c(), dc_127_32x32_c(), dc_127_4x4_c(), dc_127_8x8_c(), dc_128_16x16_c(), dc_128_32x32_c(), dc_128_4x4_c(), dc_128_8x8_c(), dc_129_16x16_c(), dc_129_32x32_c(), dc_129_4x4_c(), dc_129_8x8_c(), dds_decode(), dec_bark_env(), dec_gain(), decode_0(), decode_aiff_header(), decode_block(), decode_block_progressive(), decode_block_refinement(), decode_bmv_frame(), decode_clnpass(), decode_coeff(), decode_coeffs_b_generic(), decode_const_block_data(), decode_dc_progressive(), decode_dct(), decode_exp_lsp(), decode_fixed_sparse(), decode_frame(), decode_huffman2(), decode_i_block(), decode_init_static(), decode_pivot(), decode_pixel(), decode_qu_spectra(), decode_scale_factors(), decode_static1(), decode_static2(), decode_static3(), decode_sym(), decode_sym_565(), decompress_68(), delta_decode(), dnxhd_mb_var_thread(), dss_sp_get_normalize_bits(), encode_ac_coeffs(), encode_block(), encode_color_spec(), encode_frame(), estimate_sid_gain(), extend_code(), ff_amr_set_fixed_gain(), ff_ape_parse_tag(), ff_celp_lp_synthesis_filterf(), ff_fast_malloc(), ff_h263_decode_motion(), ff_h264_build_ref_list(), ff_h264_decode_mb_cabac(), ff_h264_decode_mb_cavlc(), ff_int_from_list_or_default(), ff_lsp2polyf(), ff_mjpeg_encode_coef(), ff_mjpeg_encode_dc(), ff_mjpeg_encode_huffman_increment(), ff_mpeg1_encode_init(), ff_msmpeg4_encode_mb(), ff_mss12_model_update(), ff_opus_rc_enc_laplace(), ff_rm_read_mdpr_codecdata(), ff_snappy_uncompress(), ff_tee_parse_slave_options(), ff_text_r8(), ff_vdpau_common_end_frame(), ff_vp8_luma_dc_wht_dc_mmi(), ff_wmv2_decode_mb(), ff_wmv2_encode_mb(), ffintscan(), ffio_read_varlen(), fill_rectangle(), filter_frame(), find_marker(), find_next_start_code(), frac_init(), frame_header_obu(), g2m_load_cursor(), get_aiff_header(), get_coeff(), get_coeff_bits(), get_content_type(), get_dimension(), get_master_clock(), get_mvdata_interlaced(), get_opcodes(), get_utf8(), get_val_from_nodes_tab(), h261_decode_gob_header(), h261_encode_motion(), h263_decode_gob_header(), h263p_encode_umotion(), hevc_idct_dc_16x16_msa(), hevc_idct_dc_32x32_msa(), hevc_idct_dc_4x4_msa(), hevc_idct_dc_8x8_msa(), hevc_intra_pred_dc_16x16_msa(), hevc_intra_pred_dc_8x8_msa(), hls_slice_header(), hq_decode_block(), hqx_get_ac(), hScale16To15_c(), hScale16To19_c(), hScale8To15_c(), hScale8To19_c(), hScale_real(), init(), init_mv_penalty_and_fcode(), init_report(), intersection_word(), inv_bits(), ivi_decode_coded_blocks(), ivr_read_header(), jpg_decode_block(), kmvc_decode_inter_8x8(), kmvc_decode_intra_8x8(), l1_unscale(), l2_unscale_group(), lag_decode_prob(), lag_get_rac(), latm_parse_packet(), lfo_get(), lfo_get_value(), loco_decode_plane(), loco_get_rice_param(), loco_update_rice_param(), lowpass_prediction(), lpc_prediction(), ls_encode_regular(), ls_encode_runterm(), mace_decode_frame(), main(), make_gauss_kernel(), match_stream_specifier(), memset_bpc(), mix_frames(), mmf_rate(), mode1112(), mode19(), mode20(), model256_update(), model_update(), mov_parse_stsd_data(), mov_parse_uuid_spherical(), mov_read_custom(), mov_read_udta_string(), mp3_update_xing(), mpeg1_encode_motion(), mpeg_decode_mb(), mpeg_decode_motion(), mpegts_write_pes(), mpegts_write_pmt(), mpegts_write_sdt(), msmpeg4v2_decode_motion(), msmpeg4v2_encode_motion(), msmpeg4v34_decode_mb(), mss4_decode_dct(), mxf_get_wrapping_kind(), myrnd(), nelly_decode_block(), nvenc_check_cap(), old_codec1(), on2avc_decode_pairs(), on2avc_decode_quads(), open_output_file(), opus_rc_tell_frac(), pack_fcb_param(), parse_cc_stream_mapstring(), parse_content_length(), parse_fmtp(), parse_int(), parse_key_value_pair(), parse_m3d(), parse_manifest(), parse_manifest_representation(), parse_manifest_segmenttimeline(), parse_programinformation(), parse_psfile(), parse_section_header(), parse_variant_stream_mapstring(), pcm_read_header(), pop(), pp_get_mode_by_name_and_quality(), print_chroma_location(), print_color_range(), print_color_space(), print_color_trc(), print_primaries(), pulse_audio_sink_input_cb(), pulse_stream_writable(), put16(), put_ebml_sint(), put_ebml_uint(), put_payload_header(), qpeg_decode_inter(), quantize_pcm(), rac_get_bits(), rac_get_model256_sym(), rac_get_model_sym(), read_coeffs_coarse(), read_len_table(), read_scalefactors(), read_table(), record_block(), request_frame(), resample_common_TMPL(), resample_linear(), resample_linear_TMPL(), resample_one(), rl2_rle_decode(), run_implementation(), sdt_cb(), sender_thread(), set_frame_data(), set_param(), set_src_position(), setup_pps(), sgi_rle_encode(), smacker_decode_bigtree(), smka_decode_frame(), snappy_copy2(), snappy_copy4(), snappy_literal(), store_table(), tag_tree_code(), tag_tree_decode(), tdsc_load_cursor(), test_separators(), tm2_get_token(), tscc2_decode_frame(), tscc2_decode_mb(), twinvq_memset_float(), union_word(), unpack_alpha(), unquant_block(), unsharp_opencl_make_filter_params(), update_metadata(), url_alloc_for_protocol(), utf8len(), v210_decode_slice(), v210_enc_TMPL(), v210_planar_pack_10_c(), v210_planar_pack_8_c(), v210_planar_unpack_c(), v410_decode_slice(), v410_encode_frame(), v4l2_prepare_encoder(), vc1_decode_b_mb(), vc1_decode_b_mb_intfi(), vc1_decode_b_mb_intfr(), vc1_decode_i_blocks(), vc1_decode_i_blocks_adv(), vc1_decode_p_mb(), vc1_decode_p_mb_intfi(), vc1_decode_p_mb_intfr(), vdpau_h264_decode_slice(), vdpau_h264_end_frame(), vdpau_hevc_decode_slice(), vdpau_hevc_end_frame(), vdpau_mpeg_decode_slice(), vdpau_vc1_decode_slice(), vdpau_vp9_decode_slice(), vdpau_vp9_end_frame(), vorbis_floor1_decode(), vp6_get_nb_null(), vp9_idct8x8_1_add_msa(), wavesynth_synth_sample(), wavpack_decode_block(), wma_decode_block(), wp_exp2(), write_pts(), write_sm_data(), X264_init(), xan_decode_chroma(), xan_huffman_decode(), xbm_decode_frame(), xiph_lacing_16bit(), xiph_lacing_full(), xwd_encode_frame(), yuv2NBPS(), yuv2p010l1_c(), yuv2p010lX_c(), yuv2plane1_16_c_template(), yuv2plane1_8_c(), yuv2plane1_float(), yuv2plane1_float_bswap_c_template(), yuv2plane1_float_c_template(), yuv2planeX_10_c_template(), yuv2planeX_16_c_template(), yuv2planeX_8_16(), yuv2planeX_float_bswap_c_template(), and yuv2planeX_float_c_template().

const char* name

Definition at line 867 of file avisynth_c.h.

const char const char* params

Definition at line 867 of file avisynth_c.h.

const char const char AVS_ApplyFunc apply

Definition at line 867 of file avisynth_c.h.

const char AVS_Value const char** arg_names

Definition at line 872 of file avisynth_c.h.

const AVS_VideoInfo* vi
const AVS_VideoInfo int align

Definition at line 906 of file avisynth_c.h.

BYTE* dstp
BYTE int dst_pitch
BYTE int const BYTE* srcp
BYTE int const BYTE int src_pitch

Definition at line 908 of file avisynth_c.h.

Referenced by call_kernel(), process_slice_uyvy422(), and thumbnail_kernel().

BYTE int const BYTE int int row_size

Definition at line 908 of file avisynth_c.h.

Referenced by decode_lspf(), and encode_frame().

BYTE int const BYTE int int int height

Definition at line 908 of file avisynth_c.h.

AVS_ShutdownFunc function

Definition at line 911 of file avisynth_c.h.

AVS_VideoFrame int rel_offset

Definition at line 913 of file avisynth_c.h.

AVS_VideoFrame int int new_pitch

Definition at line 913 of file avisynth_c.h.

AVS_VideoFrame int int int new_row_size

Definition at line 913 of file avisynth_c.h.

int mem
const char* newdir

Definition at line 918 of file avisynth_c.h.

Definition at line 933 of file avisynth_c.h.

Definition at line 933 of file avisynth_c.h.

Definition at line 933 of file avisynth_c.h.