FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | 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
 

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_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_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_SAMPLE_BITS_MASK | AVS_CS_SUB_HEIGHT_MASK | AVS_CS_SUB_WIDTH_MASK, AVS_CS_PLANAR_FILTER = ~( AVS_CS_VPLANEFIRST | AVS_CS_UPLANEFIRST )
}
 
enum  {
  AVS_CS_UNKNOWN = 0, AVS_CS_BGR24 = 1<<0 | AVS_CS_BGR | AVS_CS_INTERLEAVED, AVS_CS_BGR32 = 1<<1 | 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_PLANAR | AVS_CS_YUV | AVS_CS_SAMPLE_BITS_8 | AVS_CS_VPLANEFIRST | AVS_CS_SUB_HEIGHT_1 | AVS_CS_SUB_WIDTH_1, AVS_CS_YV16 = AVS_CS_PLANAR | AVS_CS_YUV | AVS_CS_SAMPLE_BITS_8 | AVS_CS_VPLANEFIRST | AVS_CS_SUB_HEIGHT_1 | AVS_CS_SUB_WIDTH_2, AVS_CS_YV12 = AVS_CS_PLANAR | AVS_CS_YUV | AVS_CS_SAMPLE_BITS_8 | AVS_CS_VPLANEFIRST | AVS_CS_SUB_HEIGHT_2 | AVS_CS_SUB_WIDTH_2,
  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_PLANAR | AVS_CS_INTERLEAVED | AVS_CS_YUV | AVS_CS_SAMPLE_BITS_8
}
 
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_SSE4_2 = 0x1000
}
 

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_INLINE int avs_is_property (const AVS_VideoInfo *p, int property)
 
AVSC_INLINE int avs_is_planar (const AVS_VideoInfo *p)
 
 AVSC_API (int, avs_is_color_space)(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_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_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_API (int, avs_get_pitch_p)(const AVS_VideoFrame *p
 
 AVSC_API (int, avs_get_row_size_p)(const AVS_VideoFrame *p
 
AVSC_INLINE int avs_get_row_size (const AVS_VideoFrame *p)
 
 AVSC_API (int, avs_get_height_p)(const AVS_VideoFrame *p
 
AVSC_INLINE int avs_get_height (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 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_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_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_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 c_space
 
int plane
 
int pixels
 
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
 

Typedef Documentation

typedef struct AVS_Clip AVS_Clip

Definition at line 213 of file avisynth_c.h.

Definition at line 214 of file avisynth_c.h.

const char AVS_Value args

Definition at line 562 of file avisynth_c.h.

Definition at line 562 of file avisynth_c.h.

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

Definition at line 678 of file avisynth_c.h.

Enumeration Type Documentation

anonymous enum
Enumerator
AVISYNTH_INTERFACE_VERSION 

Definition at line 52 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 55 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 61 of file avisynth_c.h.

anonymous enum
Enumerator
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_16 
AVS_CS_SAMPLE_BITS_32 
AVS_CS_PLANAR_MASK 
AVS_CS_PLANAR_FILTER 

Definition at line 78 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 

Definition at line 109 of file avisynth_c.h.

anonymous enum
Enumerator
AVS_IT_BFF 
AVS_IT_TFF 
AVS_IT_FIELDBASED 

Definition at line 128 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 133 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 145 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 151 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_SSE4_2 

Definition at line 603 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 243 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 246 of file avisynth_c.h.

Referenced by avisynth_read_packet_video().

AVSC_INLINE int avs_is_rgb24 ( const AVS_VideoInfo p)

Definition at line 249 of file avisynth_c.h.

Referenced by avisynth_read_packet_video().

AVSC_INLINE int avs_is_rgb32 ( const AVS_VideoInfo p)

Definition at line 252 of file avisynth_c.h.

AVSC_INLINE int avs_is_yuv ( const AVS_VideoInfo p)

Definition at line 255 of file avisynth_c.h.

AVSC_INLINE int avs_is_yuy2 ( const AVS_VideoInfo p)

Definition at line 258 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_INLINE int avs_is_property ( const AVS_VideoInfo p,
int  property 
)

Definition at line 271 of file avisynth_c.h.

AVSC_INLINE int avs_is_planar ( const AVS_VideoInfo p)

Definition at line 274 of file avisynth_c.h.

AVSC_API ( int  ,
avs_is_color_space   
) const
AVSC_INLINE int avs_is_field_based ( const AVS_VideoInfo p)

Definition at line 279 of file avisynth_c.h.

AVSC_INLINE int avs_is_parity_known ( const AVS_VideoInfo p)

Definition at line 282 of file avisynth_c.h.

AVSC_INLINE int avs_is_bff ( const AVS_VideoInfo p)

Definition at line 285 of file avisynth_c.h.

AVSC_INLINE int avs_is_tff ( const AVS_VideoInfo p)

Definition at line 288 of file avisynth_c.h.

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_INLINE int avs_samples_per_second ( const AVS_VideoInfo p)

Definition at line 304 of file avisynth_c.h.

AVSC_INLINE int avs_bytes_per_channel_sample ( const AVS_VideoInfo p)

Definition at line 308 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 319 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 322 of file avisynth_c.h.

AVSC_INLINE int avs_frames_from_audio_samples ( const AVS_VideoInfo p,
INT64  samples 
)

Definition at line 325 of file avisynth_c.h.

AVSC_INLINE INT64 avs_audio_samples_from_bytes ( const AVS_VideoInfo p,
INT64  bytes 
)

Definition at line 328 of file avisynth_c.h.

AVSC_INLINE INT64 avs_bytes_from_audio_samples ( const AVS_VideoInfo p,
INT64  samples 
)

Definition at line 331 of file avisynth_c.h.

AVSC_INLINE int avs_audio_channels ( const AVS_VideoInfo p)

Definition at line 334 of file avisynth_c.h.

AVSC_INLINE int avs_sample_type ( const AVS_VideoInfo p)

Definition at line 337 of file avisynth_c.h.

AVSC_INLINE void avs_set_property ( AVS_VideoInfo p,
int  property 
)

Definition at line 341 of file avisynth_c.h.

AVSC_INLINE void avs_clear_property ( AVS_VideoInfo p,
int  property 
)

Definition at line 344 of file avisynth_c.h.

AVSC_INLINE void avs_set_field_based ( AVS_VideoInfo p,
int  isfieldbased 
)

Definition at line 347 of file avisynth_c.h.

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

Definition at line 350 of file avisynth_c.h.

AVSC_API ( int  ,
avs_get_pitch_p   
) const
AVSC_API ( int  ,
avs_get_row_size_p   
) const
AVSC_INLINE int avs_get_row_size ( const AVS_VideoFrame p)

Definition at line 412 of file avisynth_c.h.

AVSC_API ( int  ,
avs_get_height_p   
) const
AVSC_INLINE int avs_get_height ( const AVS_VideoFrame p)

Definition at line 417 of file avisynth_c.h.

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 void avs_release_frame ( AVS_VideoFrame f)

Definition at line 441 of file avisynth_c.h.

AVSC_INLINE AVS_VideoFrame* avs_copy_frame ( AVS_VideoFrame f)

Definition at line 443 of file avisynth_c.h.

AVSC_API ( void  ,
avs_copy_value   
)
AVSC_API ( void  ,
avs_release_value   
)
AVSC_INLINE int avs_defined ( AVS_Value  v)

Definition at line 485 of file avisynth_c.h.

AVSC_INLINE int avs_is_clip ( AVS_Value  v)

Definition at line 486 of file avisynth_c.h.

Referenced by avisynth_open_file().

AVSC_INLINE int avs_is_bool ( AVS_Value  v)

Definition at line 487 of file avisynth_c.h.

AVSC_INLINE int avs_is_int ( AVS_Value  v)

Definition at line 488 of file avisynth_c.h.

Referenced by avs_as_float().

AVSC_INLINE int avs_is_float ( AVS_Value  v)

Definition at line 489 of file avisynth_c.h.

AVSC_INLINE int avs_is_string ( AVS_Value  v)

Definition at line 490 of file avisynth_c.h.

Referenced by avs_as_string().

AVSC_INLINE int avs_is_array ( AVS_Value  v)

Definition at line 491 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 492 of file avisynth_c.h.

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

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

Definition at line 497 of file avisynth_c.h.

AVSC_INLINE int avs_as_int ( AVS_Value  v)

Definition at line 499 of file avisynth_c.h.

AVSC_INLINE const char* avs_as_string ( AVS_Value  v)

Definition at line 501 of file avisynth_c.h.

AVSC_INLINE double avs_as_float ( AVS_Value  v)

Definition at line 503 of file avisynth_c.h.

AVSC_INLINE const char* avs_as_error ( AVS_Value  v)

Definition at line 505 of file avisynth_c.h.

Referenced by avisynth_open_file().

AVSC_INLINE const AVS_Value* avs_as_array ( AVS_Value  v)

Definition at line 507 of file avisynth_c.h.

AVSC_INLINE int avs_array_size ( AVS_Value  v)

Definition at line 509 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_array_elt ( AVS_Value  v,
int  index 
)

Definition at line 511 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_new_value_bool ( int  v0)

Definition at line 516 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_new_value_int ( int  v0)

Definition at line 518 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_new_value_string ( const char *  v0)

Definition at line 520 of file avisynth_c.h.

Referenced by avisynth_open_file().

AVSC_INLINE AVS_Value avs_new_value_float ( float  v0)

Definition at line 522 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_new_value_error ( const char *  v0)

Definition at line 524 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_new_value_clip ( AVS_Clip v0)

Definition at line 527 of file avisynth_c.h.

AVSC_INLINE AVS_Value avs_new_value_array ( AVS_Value v0,
int  size 
)

Definition at line 530 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 663 of file avisynth_c.h.

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

Definition at line 668 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 c_space

Definition at line 277 of file avisynth_c.h.

int plane

Definition at line 291 of file avisynth_c.h.

Referenced by achroma(), aflat(), apply_loop_filter(), av_frame_get_plane_buffer(), av_read_image_line(), av_write_image_line(), avisynth_read_packet_video(), bitline2chunky(), bitplanar2chunky(), blend_frame(), blend_frames16(), blend_frames8(), block_mc(), calc_combed_score(), calc_diffs(), cfhd_decode(), check_image_pointers(), chroma(), color(), color16(), compare_fields(), config_input(), config_output(), config_props(), copy_fields(), copy_pad(), copy_picture_field(), dcadec_decode_frame(), decimate_frame(), decode(), decode_band_hdr(), decode_deep_tvdc32(), decode_frame(), decodeplane32(), decodeplane8(), deinterlace_slice(), displace_planar(), encode_frame(), envelope_instant(), envelope_instant16(), envelope_peak(), envelope_peak16(), evalfunc_0(), evalfunc_1(), 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(), ffmal_copy_frame(), fill_slice_long(), filter(), filter_3x3(), filter_5x5(), filter_frame(), filter_frame_fixed(), filter_slice(), filter_slice_alpha(), filter_slice_chroma(), flat(), geq_filter_frame(), geq_init(), get_frame(), get_video_buffer(), getpix(), horizontal_frame_pack(), init_block_mapping(), init_dequantizer(), initialize(), interpolate_refplane(), irdft_vertical(), jpg_decode_block(), lowpass(), lowpass16(), lum(), main(), mc_row(), mc_subpel(), opengl_get_plane_pointer(), planarCopyWrapper(), plot_spectrum_column(), pointer_at(), process_frame(), put_blocks(), quantize(), rdft_vertical(), render_slice(), skip_check(), svq1_encode_plane(), uninit(), unpack_superblocks(), unpack_vlcs(), vble_restore_plane(), vp3_decode_init(), vp3_dequant(), vp56_decode_mb(), and vp56_mc().

int pixels
const AVS_Value avs_void = {'v'}
static

Definition at line 480 of file avisynth_c.h.

Definition at line 482 of file avisynth_c.h.

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

Definition at line 547 of file avisynth_c.h.

Referenced by aacsbr_tableinit(), ac3_5p1_mux(), add_file(), add_wav(), adpcm_compress_trellis(), adpcm_decode_frame(), adpcm_encode_frame(), alac_stereo_decorrelation(), align_get_bits(), alloc_lines(), alloc_slice(), apply_window_and_mdct(), arith2_get_prob(), asf_read_metadata(), asf_read_timestamp(), asf_write_header1(), asv2_get_bits(), av_get_channel_layout(), av_parse_time(), av_parse_video_rate(), av_parse_video_size(), av_q2intfloat(), av_strncasecmp(), av_xiphlacing(), 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_input_response(), calc_rice_params(), celt_decode_band(), channel_decorrelation(), check_bits_for_superframe(), check_diff(), check_keyboard_interaction(), check_stream_max_drift(), chs_assemble_msbs_lsbs(), cine_read_packet(), cinepak_decode_codebook(), clean_index(), clear_blocks_axp(), combine_residual_frame(), compare(), compute_antialias(), compute_scale_factors(), config_input(), config_output(), copy_moof(), copy_subcoefs(), create_all_formats(), create_cel_evals(), create_freq_table(), create_map(), crypto_read(), dash_fill_tmpl_params(), 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(), decode012(), decode_b(), 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(), dequantize(), dnxhd_calc_bits_thread(), dnxhd_decode_dct_block(), dnxhd_encode_block(), dnxhd_encode_thread(), dot_prod(), dot_prods(), dpcm_decode_frame(), draw_curves(), dshow_cycle_formats(), dst_calc_I_c(), e2_m16(), ebml_read_num(), ebml_read_sint(), ebml_read_uint(), elliott(), encode_block(), encode_residual_ch(), encode_residual_fixed(), encode_strip(), estimate_stereo_mode(), evolve(), evrc_decode_init(), fadst4_1d(), fadst_1d(), 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_celp_circ_addf(), ff_celp_lp_synthesis_filter(), ff_celp_lp_synthesis_filterf(), ff_celp_lp_zero_synthesis_filterf(), ff_dca_core_filter_fixed(), 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_init(), ff_g729_adaptive_gain_control(), ff_generate_window_func(), 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_line_noise_avg_c(), ff_log2_16bit_c(), ff_log2_c(), ff_mdct_calc_c(), ff_mdct_calcw_c(), ff_mdct_init(), ff_mjpeg_decode_dht(), 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_pca(), ff_pca_add(), ff_pca_init(), ff_rdft_init(), ff_rfps_add_frame(), ff_rfps_calculate(), ff_rm_reorder_sipr_data(), ff_rotate_slice(), ff_scale_vector_to_given_sum_of_squares(), ff_sine_window_init(), ff_subtitles_next_line(), ff_subtitles_read_text_chunk(), ff_thread_report_progress(), ff_thread_report_progress2(), ff_vc1_mc_4mv_luma(), ff_vc1_pred_dc(), ff_vc1_pred_mv(), ff_vc1_pred_mv_intfr(), ff_vorbis_comment(), ff_wma_init(), ffprobe_show_pixel_formats(), fft_perm_avx(), fft_ref(), fft_ref_init(), fill_ones(), fill_quantization_matrices(), fill_rand_int(), fill_vaapi_RefPicList(), filter_frame(), filter_frame_fixed(), filter_frame_float(), find_and_decode_index(), find_next_start_code(), flat_print_section_header(), free_lines(), ftx(), gate(), get_amv(), get_avg_color(), get_base128(), get_bits_align32(), get_block(), get_channel_idx(), get_lowest_part_list_y(), get_lowest_part_y(), get_nb_points(), get_num(), get_qcx(), get_shift(), get_slice_offset(), gif_read_header1(), graph_config_pointers(), guess_ni_flag(), h261_decode_block(), h261_encode_block(), h263_decode_block(), h263_encode_block(), hl_motion(), hqx_filter(), huf_canonical_code_table(), hybrid_synthesis(), iir_filter(), imdct_and_windowing_eld(), 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(), mace_broken_clip_int16(), main(), make_filters_from_proto(), matroska_clear_queue(), matroska_parse_block(), matroska_parse_laces(), matroska_probe(), matroska_read_close(), max_nbits(), mc_dir_part(), mc_part_std(), mc_part_weighted(), mdec_decode_block_intra(), memset_bpc(), mjpeg_decode_scan(), modnpf(), mono_to_stereo(), mov_write_tfrf_tag(), mp_decode_layer1(), mp_decode_layer3(), mpc8_dec_enum(), mpeg1_decode_block_inter(), mpeg1_decode_block_intra(), 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_encode_block(), mpeg4_get_block_length(), mpegts_write_packet_internal(), mux_frames(), mxf_compute_ptses_fake_index(), myrnd(), new_audio_stream(), opt_map_channel(), pam_encode_frame(), parse_aux_data(), parse_coding_header(), parse_commands(), parse_forced_key_frames(), parse_intervals(), 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(), pred_block_dc(), pred_intra_mode(), pred_motion(), pred_mv(), pred_non_zero_count(), pred_spatial_direct_motion(), print_frame(), process_client(), 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_huffman_table(), qdm2_fft_decode_tones(), qdm2_parse_packet(), qdm2_restore_block(), ra144_encode_subblock(), rdft_calc_c(), rdt_parse_sdp_line(), read_key(), read_len_table(), read_mv_component(), read_packet(), realtext_read_header(), 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_fft(), sami_read_header(), sap_fetch_packet(), sbr_qmf_synthesis(), sbr_sum_square_c(), scale_mv(), scaleforopp(), scaleforopp_x(), scaleforopp_y(), scaleforsame(), scaleforsame_x(), scaleforsame_y(), 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(), stereo_to_mono(), store_table(), svq1_decode_block_intra(), svq1_decode_block_non_intra(), synth_block(), synth_block_fcb_acb(), synth_block_hardcoded(), synth_frame(), synth_superframe(), synthfilt_build_sb_samples(), targa_decode_rle(), targa_encode_normal(), tqi_decode_mb(), try_push_frame(), uninit(), vaapi_mpeg2_start_frame(), vaapi_mpeg4_start_frame(), vaapi_vc1_start_frame(), validate_codec_tag(), var_read_string(), vc1_coded_block_pred(), vc1_decode_i_block(), vc1_decode_i_block_adv(), vc1_decode_intra_block(), vc1_i_pred_dc(), video_audio_display(), 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(), xbr_filter(), and yuv4_generate_header().

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

Definition at line 553 of file avisynth_c.h.

Referenced by a64multi_encode_frame(), aa_probe(), aa_read_packet(), aac_decode_frame(), aasc_decode_frame(), ac3_decode_frame(), ac3_eac3_probe(), add_buffer_ref(), add_metadata(), adpcm_decode_frame(), adpcm_encode_frame(), adts_aac_probe(), adts_write_packet(), adx_decode_frame(), adx_parse(), aic_decode_frame(), amf_tag_contents(), amrnb_decode_frame(), amrwb_decode_frame(), anti_sparseness(), ape_decode_frame(), apng_write_trailer(), append_dht_segment(), asf_parse_packet(), asf_write_header1(), asf_write_markers(), asink_init(), asink_query_formats(), ass_probe(), ass_split(), ass_split_section(), atrac1_decode_frame(), atrac3_decode_frame(), audio_write_packet(), aura_decode_frame(), auto_matrix(), av_buffer_create(), av_buffer_make_writable(), av_buffer_pool_get(), av_buffer_realloc(), av_buffer_ref(), av_buffersink_get_frame_flags(), av_filename_number_test(), av_frame_get_plane_buffer(), av_frame_set_qp_table(), av_get_frame_filename(), 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_image_alloc(), av_new_packet(), av_opt_get(), av_opt_serialize(), av_packet_merge_side_data(), av_probe_input_buffer2(), av_samples_alloc(), 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(), avcodec_open2(), avfilter_graph_dump(), avformat_find_stream_info(), avpriv_dv_produce_packet(), avs_decode_frame(), bmp_decode_frame(), bmp_encode_frame(), bmp_parse(), bmv_aud_decode_frame(), buffer_needs_copy(), buffer_pool_free(), bytestream2_init(), bytestream2_init_writer(), cavs_decode_frame(), cavsvideo_parse(), cdg_border_preset(), cdg_tile_block(), 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(), cmv_decode_frame(), codeblock(), codecctl_int(), coeff_unpack_golomb(), common_init(), comp_interp_index(), comp_ppf_coeff(), compact_print_str(), compute_imdct(), concat_read_header(), config_output(), config_props(), cook_decode_frame(), cook_parse(), copy_moof(), copy_tag(), count_hq_slice(), crc_write_trailer(), create_ass_text(), cyuv_decode_frame(), dca_parse(), decode(), decode_block(), decode_byterun(), decode_bytes(), decode_chunks(), decode_fill(), decode_frame(), decode_init(), decode_lowdelay(), decode_luma_residual(), decode_packet(), decode_slice(), decode_slice_thread(), decode_tag(), decode_user_data(), decode_vlc_codeword(), decode_write_frame(), decode_zbuf(), default_print_section_footer(), default_print_section_header(), determine_bitrate(), dfa_decode_frame(), dilate_init(), dirac_decode_frame(), dirac_parse(), disp_tree(), dnxhd_decode_frame(), dnxhd_encode_picture(), dnxhd_parse(), do_init_filter(), double2int64str(), dpx_parse(), draw_edges_8_c(), drawtext(), dss_sp_decode_frame(), dts_probe(), dump_stream_format(), dv_encode_video_segment(), dv_inject_metadata(), dvaudio_parse(), dvbsub_decode(), dvbsub_parse_object_segment(), dvdsub_decode(), dvvideo_decode_frame(), dwt_plane(), dxa_read_packet(), efi_read(), encode_apng(), encode_block(), encode_frame(), encode_slices(), encode_zlibprime(), enqueue_packet(), epic_jb_decode_tile(), evrc_decode_frame(), extract_header(), ff_aac_ac3_parse(), ff_alloc_packet2(), ff_amrwb_lsp2lpc(), ff_ape_parse_tag(), ff_ass_add_rect(), ff_ass_split_override_codes(), ff_bufqueue_add(), ff_bufqueue_discard_all(), ff_emulated_edge_mc(), ff_get_cpu_flags_ppc(), ff_h263_decode_frame(), ff_h264_decode_extradata(), ff_h264_decode_slice_header(), ff_h264_handle_aggregated_packet(), ff_hevc_annexb2mp4(), ff_hevc_split_packet(), 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_tcp_write_packet(), ff_rv34_decode_frame(), ff_sauce_read(), ff_snappy_uncompress(), ff_spdif_probe(), ff_srtp_encrypt(), ff_srtp_set_crypto(), ff_tlog_link(), ff_tlog_ref(), ff_tls_open_underlying(), ff_twinvq_decode_frame(), ff_udp_set_remote_url(), ff_vdpau_add_buffer(), 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(), ffm_read_write_index(), ffm_write_header_codec_ctx(), ffm_write_header_codec_private_ctx(), ffm_write_recommended_config(), ffm_write_write_index(), ffmmal_add_packet(), ffserver_get_arg(), ffserver_save_avoption_int(), fft(), fileTest(), fill_picture_monoblack(), fill_picture_rgb(), filter(), filter_frame(), find_image_range(), find_index_range(), find_new_headers(), find_rtp_session_with_url(), flac_decode_frame(), flac_parse(), flac_write_header(), flat_print_section_header(), flat_print_str(), flic_decode_frame(), 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(), g729_parse(), gen_sub_text(), generate_codebook(), get_asf_string(), get_base128(), get_level_prefix(), get_line(), get_metadata(), get_metadata_size(), get_pts(), get_se_golomb(), get_se_golomb_long(), get_sidx_size(), get_stats(), get_strl(), get_tag(), get_ue_golomb(), get_ue_golomb_31(), get_ue_golomb_long(), get_ur_golomb(), get_ur_golomb_jpegls(), get_word(), get_word_until_chars(), gif_read_packet(), gopher_open(), gsm_decode_frame(), gsm_parse(), guess_channel_layout(), h261_decode_frame(), h261_parse(), h263_parse(), h264_decode_frame(), h264_split(), handle_connect_error(), hevc_handle_packet(), hevc_idct_16x16_msa(), hevc_parse(), hevc_split(), hex_log(), http_open_cnx_internal(), http_vlog(), id3v2_read_internal(), idcin_decode_frame(), iff_read_header(), iff_read_packet(), ilbc_decode_frame(), imc_decode_frame(), imdct36_mips_float(), imdct_and_windowing(), imdct_and_windowing_eld(), imdct_and_windowing_ld(), import_pem(), ini_print_section_header(), ini_print_str(), init(), init_dict(), init_out(), insert_datetime(), ipvideo_decode_frame(), ir2_decode_frame(), jpeg_parse(), jpeg_parse_packet(), json_print_int(), json_print_item_str(), json_print_section_header(), lag_decode_frame(), latm_parse(), libAVMemInputPin_Receive(), libgsm_decode_frame(), libopenjpeg_decode_frame(), libschroedinger_decode_frame(), libspeex_decode_frame(), lmlm4_probe(), load_metadata(), loas_probe(), lxf_sync(), mace_decode_frame(), main(), make_lpc_coefs(), map_to_opts(), matroska_decode_buffer(), matroska_parse_frame(), matroska_parse_laces(), matroska_parse_tracks(), matroska_parse_webvtt(), md5_close(), mimic_decode_frame(), mjpegb_decode_frame(), 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_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_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_read_header(), 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(), msvideo1_decode_frame(), mxf_add_timecode_metadata(), mxf_parse_h264_frame(), mxpeg_decode_frame(), nelly_decode_block(), new_output_stream(), nvenc_encode_frame(), ogg_replace_stream(), ogg_write_page(), old_dirac_header(), on2avc_decode_frame(), on2avc_reconstruct_channel(), on2avc_reconstruct_stereo(), open_input_stream(), open_null_ctx(), opt_list(), opt_recording_timestamp(), opt_show_format_entry(), opus_decode_packet(), opus_find_frame_end(), param_write_hex(), parse(), parse_bsfs(), parse_channel_expressions(), parse_channel_name(), parse_chunks(), parse_command(), parse_context_init(), parse_ifo_palette(), parse_link_name(), parse_opus_ts_header(), parse_pixel_format(), parse_psfile(), parse_source_list(), parse_timecode_in_framenum_format(), pcx_encode_frame(), png_parse(), pnm_decode_frame(), pnm_parse(), pool_alloc_buffer(), pool_release_buffer(), postfilter(), postfilter_5k0(), print_digraph(), print_pix_fmt_fourccs(), print_report(), process_client(), prores_encode_frame(), prores_encode_picture(), ptx_decode_frame(), push_single_pic(), put_flac_codecpriv(), put_swf_matrix(), put_swf_rect(), pva_probe(), qcelp_decode_frame(), qcp_read_header(), qdm2_decode_frame(), qdm2_parse_config(), qdm2_parse_packet(), qdm2_parse_subpacket(), query_formats(), ra144_decode_frame(), ra288_decode_frame(), ratecontrol_1pass(), raw_decode(), read_access_unit(), read_file(), read_header_gme(), read_huffman_tables(), read_packet(), read_shape_from_file(), read_whole_file(), realtext_decode_frame(), realtext_probe(), realtext_read_header(), 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_addr_list(), rtp_parse_one_packet(), rtsp_cmd_setup(), rtsp_parse_range_npt(), rtsp_read_setup(), run_psnr(), rv10_decode_frame(), rv34_parse(), s302m_decode_frame(), sami_probe(), sami_read_header(), sap_write_header(), save_avio_options(), sbg_read_header(), sctp_open(), segment_list_print_entry(), select_frame(), send_silence(), seqvideo_decode_frame(), set_colorquant_ratio_meta(), set_options(), set_string_number(), setup_partitions(), shift_data(), shorten_decode_frame(), show_help_options(), sipr_decode_frame(), skeleton_header(), skip_space(), slice_decode_thread(), smc_decode_frame(), smka_decode_frame(), sp5x_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(), svq3_get_se_golomb(), svq3_get_ue_golomb(), synth_percept_filter(), tak_parse(), tcp_open(), test(), text_decode_frame(), tgq_decode_frame(), tgv_decode_frame(), tgv_decode_inter(), tqi_decode_frame(), truemotion1_decode_frame(), truespeech_decode_frame(), try_push_frame(), tscc2_decode_frame(), tta_decode_frame(), udp_open(), ulti_decode_frame(), unescape(), uninit(), update_benchmark(), update_md5_sum(), value_string(), vc1_decode_frame(), vc1_parse(), vc1_split(), decklink_input_callback::VideoInputFrameArrived(), vivo_probe(), vmdaudio_decode_frame(), vmdvideo_decode_frame(), vorbis_decode_frame(), vorbis_parse_audio_packet(), vp3_decode_frame(), vsink_init(), vsink_query_formats(), wavpack_decode_frame(), wavpack_encode_frame(), webm_dash_manifest_cues(), webm_dash_manifest_read_header(), webvtt_decode_frame(), wma_decode_superframe(), write_packet(), write_streaminfo(), writer_print_data_hash(), writer_print_rational(), writer_print_time(), ws_snd_decode_frame(), xan_decode_frame(), xbm_encode_frame(), xface_decode_frame(), xface_encode_frame(), xml_print_str(), xwd_decode_frame(), and xwd_encode_frame().

void INT64 start

Definition at line 553 of file avisynth_c.h.

Referenced by aa_read_header(), ac3_bit_alloc_calc_bap_c(), apply_intensity_stereo(), apply_mid_side_stereo(), apply_tns(), ast_write_header(), avoid_clipping(), avpriv_new_chapter(), buffer_needs_copy(), build_frame_code(), calc_thr_3gpp(), check_header_mismatch(), check_nan_suffix(), cmp_func_names(), codebook_trellis_rate(), compute_rematrixing_strategy(), deband_16_c(), deband_8_c(), decode_format80(), decode_frame(), decode_info_header(), decode_p_block(), decode_rle(), decode_slice(), decode_subframe(), decouple_info(), deinterlace_slice(), dirac_decode_frame_internal(), draw_sample_cline_gray(), draw_sample_cline_rgba(), draw_sample_line_gray(), draw_sample_line_rgba(), draw_sample_p2p_gray(), draw_sample_p2p_rgba(), encode_frame(), encode_spectral_coeffs(), encode_window_bands_info(), envelope_instant(), envelope_instant16(), envelope_peak(), envelope_peak16(), 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_read_riff_info(), ff_rl_init(), ff_wma_init(), ffmmal_add_packet(), fill_colmap(), filter_frame(), filter_slice(), find_resync_marker_reverse(), 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_event_info(), get_lag(), get_palette_frame(), get_pts(), gxf_resync_media(), hls_read(), hnm_update_palette(), htmlencode(), id3v2_read_internal(), imc_read_level_coeffs(), init_cqt(), ir2_decode_frame(), libAVFilter_Run(), make_bands(), mark_pns(), matroska_read_header(), microdvd_decode_frame(), microdvd_load_tags(), 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_interval(), parse_link_name(), pick_color(), pjs_probe(), postProcess_TMPL(), predictor_decode_mono_3800(), predictor_decode_stereo_3800(), probe(), psy_3gpp_init(), put_payload_parsing_info(), rac_get_model256_sym(), read_chapter(), read_dialogue(), read_fft_data(), read_header(), read_huffman_tables(), read_interval_packets(), read_ts(), read_var_block_data(), resample_cubic(), resample_linear(), rsd_read_header(), run_opencl_bench(), safe_filename(), search_for_ms(), search_for_pns(), search_for_quantizers_anmr(), search_for_quantizers_twoloop(), sgi_rle_encode(), srtp_read(), stereo_processing(), str_read_header(), subfile_seek(), subsampling_bounds(), targa_decode_rle(), tiff_decode_tag(), try_push_frame(), unpack_parse_unit(), url_alloc_for_protocol(), var_diamond_search(), vb_decode_palette(), vc1_decode_frame(), vc1_decode_init(), wavpack_encode_block(), webm_dash_manifest_write_header(), wmapro_window(), write_abst(), write_chapter(), write_packet(), and yae_load_frag().

Definition at line 553 of file avisynth_c.h.

int cachehints

Definition at line 558 of file avisynth_c.h.

int int frame_range

Definition at line 558 of file avisynth_c.h.

AVS_FilterInfo AVS_Value int store_child

Definition at line 594 of file avisynth_c.h.

int version
const char* s

Definition at line 631 of file avisynth_c.h.

Referenced by aac_encode_close(), aac_encode_end(), aac_encode_frame(), aac_encode_init(), aac_parse_init(), aasc_decode_end(), aasc_decode_frame(), aasc_decode_init(), ac3_decode_end(), ac3_decode_frame(), ac3_decode_init(), ac3_fixed_encode_init(), ac3_parse_init(), adpcm_compress_trellis(), adpcm_decode_frame(), adpcm_encode_close(), adpcm_encode_init(), adx_parse(), agate_config_input(), alac_encode_close(), alac_encode_frame(), alac_encode_init(), alloc_buffers(), allocate_buffers(), allocate_sample_buffers(), allocate_tables(), amr_wb_encode_close(), amr_wb_encode_frame(), amr_wb_encode_init(), amv_encode_picture(), ape_decode_close(), ape_decode_frame(), ape_decode_init(), ape_flush(), apng_encode_frame(), apply_unsharp_c(), apply_window_and_mdct(), ass_encode_frame(), audio_get_output_timestamp(), audio_read_close(), audio_read_header(), audio_read_packet(), audio_write_frame(), audio_write_header(), audio_write_packet(), audio_write_trailer(), av_audio_resample_init(), av_buffersink_get_samples(), av_buffersrc_add_frame_internal(), av_dict_get(), av_display_rotation_set(), av_expr_parse(), av_fft_init(), av_get_bits_per_pixel(), av_get_padded_bits_per_pixel(), av_image_fill_pointers(), av_normalize_sf(), av_parser_init(), av_strndup(), av_vorbis_parse_init(), avdevice_capabilities_create(), avdevice_dev_to_app_control_message(), avdevice_list_input_sources(), avdevice_list_output_sinks(), avfilter_graph_alloc_filter(), avformat_alloc_output_context2(), avformat_close_input(), avformat_open_input(), avio_alloc_context(), avpriv_dv_init_demux(), avpriv_mpegts_parse_open(), avs_decode_end(), avs_decode_init(), binkb_calc_quant(), blend_frame(), blend_frames16(), blend_frames8(), blend_image(), blur(), build_feed_streams(), build_filter(), caca_write_header(), calc_slice_sizes(), calculate_sign_huff(), callback(), celt_cwrsi(), celt_exp_rotation(), cfhd_close_decoder(), cfhd_decode(), cfhd_decode_init(), channelmap_config_input(), channelmap_filter_frame(), channelmap_init(), channelmap_query_formats(), check_bidir_mv(), check_for_italic_slash_marker(), check_http_code(), check_nan_suffix(), child_next(), choose_pix_fmts(), cinepak_decode_end(), cinepak_decode_frame(), cinepak_decode_init(), cinepak_encode_end(), cinepak_encode_frame(), cinepak_encode_init(), clip(), cmap_read_palette(), cmv_decode_end(), cmv_decode_frame(), cmv_decode_init(), codec_child_next(), colormap_nearest_node(), comb_c(), commit_bitstream_and_slice_buffer(), compand_delay(), compand_drain(), compand_nodelay(), compensate_volume(), compressor_config_output(), compute_gammaval(), compute_gammaval709(), compute_sat_hue_metrics(), config_input(), config_input_main(), config_input_overlay(), config_input_props(), config_input_ref(), config_out_props(), config_output(), config_props(), config_props_input(), config_props_output(), config_video(), connect_ports(), control_port_cb(), convert_timestamp(), cook_decode_init(), cook_parse(), cpia_decode_end(), cpia_decode_init(), cyuv_decode_frame(), cyuv_decode_init(), dcadec_close(), dcadec_decode_frame(), dcadec_flush(), dcadec_init(), dct_calc_I_c(), dct_calc_II_c(), dct_calc_III_c(), dct_quantize_TMPL(), dctA_c(), dctB_c(), deband_16_c(), deband_8_c(), decode_block(), decode_blocks(), decode_cce(), decode_close(), decode_end(), decode_ext_header(), decode_flush(), decode_frame(), decode_frame_header(), decode_hq_slice(), decode_info_header(), decode_init(), decode_lowdelay_slice(), decode_main_header(), decode_mb_info(), decode_mode(), decode_packet(), decode_stream_header(), decode_subband_arith(), decode_subband_golomb(), decode_syncpoint(), decode_tag(), decode_user_data(), decode_vol_header(), decode_vop_header(), decode_wmv9(), decompose(), decorrelation(), deinterlace_slice(), dejudder_init(), dejudder_uninit(), dering_TMPL(), device_init(), device_open(), dfa_decode_end(), dfa_decode_frame(), dfa_decode_init(), diff_c(), dilate_end_frame_filter(), dilate_init(), dilate_uninit(), dirac_decode_data_unit(), dirac_decode_end(), dirac_decode_flush(), dirac_decode_frame(), dirac_decode_init(), do_blend(), do_psnr(), do_ssim(), dpcm_decode_frame(), dpcm_decode_init(), draw_char(), draw_curves(), draw_mandelbrot(), dst_calc_I_c(), dup_wchar_to_utf8(), dv_decode_video_segment(), dv_encode_video_segment(), dv_init_weight_tables(), dvbsub_encode(), dvvideo_decode_frame(), dvvideo_decode_init(), dvvideo_encode_frame(), dvvideo_encode_init(), dwt_plane(), dxva2_mpeg2_decode_slice(), dxva2_mpeg2_end_frame(), dxva2_mpeg2_start_frame(), efi_read(), encode_apng(), encode_callback(), encode_close(), encode_end(), encode_ext_header(), encode_frame(), encode_gbrp10(), encode_gbrp12(), encode_headers(), encode_hq_slice(), encode_init(), encode_mb_internal(), encode_nals(), encode_png(), encode_rgb48_10bit(), encode_zlibprime(), erase_line(), erase_screen(), erode_end_frame_filter(), escape124_decode_close(), escape124_decode_frame(), escape124_decode_init(), escape130_decode_close(), escape130_decode_frame(), escape130_decode_init(), eval_expr(), event_thread(), execute_code(), extract_header(), Faac_encode_close(), Faac_encode_frame(), Faac_encode_init(), fdk_aac_decode_close(), fdk_aac_decode_flush(), fdk_aac_decode_frame(), fdk_aac_decode_init(), ff_aac_ac3_parse(), ff_ac3_encode_close(), ff_ac3_encode_init(), ff_ac3_float_encode_init(), ff_alloc_input_device_context(), ff_atrac3p_ipqf(), ff_atrac_generate_tables(), ff_avio_child_next(), ff_celt_free(), ff_celt_init(), ff_data_to_hex(), ff_dualinput_init(), ff_dv_init_dynamic_tables(), ff_dvvideo_init(), ff_estimate_p_frame_motion(), ff_ffv1_close(), ff_ffv1_common_init(), ff_gmc_c(), ff_h263_decode_end(), ff_h263_decode_frame(), ff_h263_decode_init(), ff_h264_decode_ref_pic_marking(), ff_http_do_new_request(), ff_huffyuv_common_init(), ff_iir_filter_init_state(), ff_imdct15_init(), ff_imdct15_uninit(), ff_img_read_header(), ff_img_read_packet(), ff_intrax8_common_init(), ff_intrax8_decode_picture(), ff_libwebp_encode_init_common(), ff_lzf_uncompress(), ff_lzw_decode(), ff_lzw_decode_init(), ff_lzw_decode_tail(), ff_mjpeg_decode_end(), ff_mjpeg_decode_frame(), ff_mjpeg_decode_init(), ff_mjpeg_encode_picture_header(), ff_mpa_decode_header(), ff_mpeg4_decode_partitions(), ff_mpeg4_decode_picture_header(), ff_mpeg4_decode_video_packet_header(), ff_mpeg4_frame_end(), ff_mpeg4_workaround_bugs(), ff_mpeg_flush(), ff_mpeg_update_thread_context(), ff_mpv_common_frame_size_change(), ff_mpv_common_init(), ff_msmpeg4_decode_init(), ff_oss_audio_open(), ff_pca(), ff_psdsp_init(), ff_rdt_parse_open(), ff_rtp_get_local_rtcp_port(), ff_rtp_get_local_rtp_port(), ff_rtp_parse_open(), ff_rtp_send_aac(), ff_rtp_send_amr(), ff_rtp_send_data(), ff_rtp_send_h263(), ff_rtp_send_h263_rfc2190(), ff_rtp_send_h264_hevc(), ff_rtp_send_jpeg(), ff_rtp_send_latm(), ff_rtp_send_mpegvideo(), ff_rtp_send_vp8(), ff_rtp_send_xiph(), ff_rtp_set_remote_url(), ff_rtsp_setup_output_streams(), ff_rv34_decode_frame(), ff_rv34_decode_init(), ff_rv34_decode_update_thread_context(), ff_sbrdsp_init(), ff_silk_init(), ff_snappy_uncompress(), ff_sndio_open(), ff_snow_common_init_after_header(), ff_snow_release_buffer(), ff_sqrt(), ff_sws_alphablendaway(), ff_t_sqrt(), ff_udp_get_local_port(), ff_udp_set_remote_url(), ff_urldecode(), ff_vc1_apply_p_loop_filter(), ff_vc1_interp_mc(), ff_vc1_loop_filter_iblk(), ff_vc1_loop_filter_iblk_delayed(), ff_vc1_mc_1mv(), ff_vc1_mc_4mv_chroma(), ff_vc1_mc_4mv_chroma4(), ff_vc1_mc_4mv_luma(), ff_vc1_pred_b_mv(), ff_vc1_pred_b_mv_intfi(), ff_vc1_pred_mv(), ff_vc1_pred_mv_intfr(), ff_vc1_smooth_overlap_filter_iblk(), ff_vector_fmul_altivec(), ff_vorbis_comment(), ff_vp56_decode_frame(), ff_vp56_decode_mbs(), ff_vp56_free(), ff_vp56_init(), ff_wma_end(), ff_wma_init(), ff_wmv2_common_init(), ff_xvmc_field_end(), ff_xvmc_field_start(), ffio_open_null_buf(), ffmmal_read_frame(), ffmpeg_cleanup(), ffserver_parse_config_feed(), ffserver_parse_config_stream(), fft_ref(), fill_block(), fill_from_cache(), fill_noise_buffer(), fill_picture_parameters(), fill_slice(), filter(), filter_brng(), filter_channel(), filter_frame(), filter_frame_left(), filter_frame_magnitude(), filter_frame_phase(), filter_frame_right(), filter_init(), filter_slice(), filter_slice16(), filter_slice8(), filter_slice_alpha(), filter_slice_chroma(), filter_slice_luma(), filter_slice_rgb(), filter_tout(), filter_vrep(), find_and_decode_index(), find_duration(), find_form_factor(), find_peaks(), find_rtp_session_with_url(), finish_frame(), flac_decode_frame(), flac_decode_init(), flac_encode_frame(), flac_encode_init(), flac_lpc_encode_c(), flashsv2_encode_end(), flashsv2_encode_frame(), flashsv2_encode_init(), flashsv_decode_block(), flashsv_decode_end(), flashsv_decode_frame(), flashsv_decode_init(), flashsv_encode_end(), flashsv_encode_frame(), flashsv_encode_init(), flic_decode_end(), flic_decode_frame_15_16BPP(), flic_decode_frame_8BPP(), flic_decode_init(), flt16_even(), flt16_round(), flt16_trunc(), flush(), flush_buffered(), flush_packet(), fmt_bytecount(), format_child_next(), framepack_uninit(), free_buffers(), free_tables(), frei0r_init(), frm_read_packet(), ftp_abort(), ftp_close(), ftp_close_dir(), ftp_connect(), ftp_connect_control_connection(), ftp_connect_data_connection(), ftp_delete(), ftp_get_file_handle(), ftp_move(), ftp_open(), ftp_open_dir(), ftp_parse_entry(), ftp_read(), ftp_read_dir(), ftp_seek(), ftp_shutdown(), ftp_write(), g729_parse(), gdigrab_read_close(), gen_image(), generate_2_noise_channels(), get_amv(), get_aspect_ratio(), get_best_frame(), get_buffer(), get_cabac_inline(), get_category(), get_chroma_mv(), get_frame(), get_luma_mv(), get_mix_any_func_TMPL(), get_nb_samples(), get_palette_frame(), get_s16l(), get_scene_score(), get_scene_score16(), get_speaker_pos(), get_stream_info(), get_system_header_size(), get_tree_codes(), get_vcd_padding_size(), get_video_buffer(), gif_decode_close(), gif_decode_frame(), gif_decode_init(), gif_encode_close(), gif_encode_frame(), gif_encode_init(), gif_image_write_image(), gopher_close(), gopher_open(), gopher_read(), gopher_write(), grab_read_close(), grab_read_header(), grab_read_packet(), gsm_flush(), gsm_parse(), h261_decode_block(), h261_decode_end(), h261_decode_frame(), h261_decode_gob(), h261_decode_gob_header(), h261_decode_init(), h261_decode_mb(), h261_decode_mb_skipped(), h261_decode_picture_header(), h261_encode_block(), h261_encode_motion(), h261_resync(), h263_mv4_search(), handle_packets(), handle_trimming(), hevc_decode_flush(), hevc_decode_frame(), hevc_decode_free(), hevc_decode_init(), hevc_init_context(), hevc_init_thread_copy(), hevc_update_thread_context(), hls_close(), hls_decode_entry(), hls_decode_entry_wpp(), hls_open(), hls_read(), hls_read_header(), hls_transform_unit(), horizontal_frame_pack(), hscroll(), http_buf_read(), http_connect(), http_listen(), http_open(), http_open_cnx(), http_open_cnx_internal(), http_read_header(), http_receive_data(), http_write_reply(), huf_decode(), icecast_close(), icecast_open(), icecast_write(), idcin_decode_frame(), idcin_decode_init(), idct248_ref(), ilbc_decode_frame(), ilbc_decode_init(), ilbc_encode_frame(), ilbc_encode_init(), image_get_linesize(), imc_read_level_coeffs(), img_read_close(), import_pem(), indexof(), init(), init_audio(), init_block_index(), init_dict(), init_idct(), init_input_filter(), init_MP4DescrParseContext(), init_ref(), init_thread_copy(), initialize(), insert_ts(), int_sqrt(), inter_pred(), interlaced_search(), interp_nearest(), interp_tetrahedral(), interp_trilinear(), interpol(), intra_pred(), ipmovie_read_header(), ipvideo_decode_opcodes(), ir2_decode_frame(), join_config_output(), join_init(), join_query_formats(), join_request_frame(), join_uninit(), jpeg2000_decode_frame(), jpeg2000_decode_init(), jpeg_table_header(), json_escape_str(), latm_find_frame_end(), latm_parse(), lcg_next(), lcg_random(), lcg_seek(), lex_name(), lex_wsword(), libAVMemInputPin_Receive(), libgsm_decode_close(), libgsm_decode_frame(), libgsm_decode_init(), libgsm_flush(), libshine_encode_close(), libshine_encode_frame(), libshine_encode_init(), libspeex_decode_close(), libspeex_decode_flush(), libspeex_decode_frame(), libspeex_decode_init(), libvorbis_encode_close(), libvorbis_encode_frame(), libvorbis_encode_init(), libvorbis_setup(), libwebp_anim_encode_close(), libwebp_anim_encode_frame(), libwebp_anim_encode_init(), libwebp_encode_close(), libwebp_encode_frame(), ljpeg_encode_bgr(), ljpeg_encode_close(), ljpeg_encode_frame(), ljpeg_encode_init(), ljpeg_encode_yuv(), load_data(), load_font_file(), load_glyph(), load_sofa(), load_sym(), loop_filter_c2(), loop_filter_l2(), lpc_encode_unrolled(), lum(), m4sl_cb(), main(), make_filters_from_proto(), MAKE_REORDER_FUNCS(), make_sin_table(), matroska_read_header(), mca(), mdct_end(), mdct_init(), microdvd_load_tags(), mjpegb_decode_frame(), mm_decode_end(), mm_decode_frame(), mm_decode_init(), mmap_read_frame(), mov_read_header(), mov_read_packet(), mov_text_color_cb(), mov_text_encode_close(), mov_text_encode_frame(), mov_text_encode_init(), mov_text_new_line_cb(), mov_text_style_cb(), mov_text_text_cb(), mov_write_header(), movecb(), mp3lame_encode_close(), mp3lame_encode_frame(), mp3lame_encode_init(), MPA_encode_frame(), MPA_encode_init(), mpeg4_decode_block(), mpeg4_decode_header(), mpeg4_decode_partition_a(), mpeg4_decode_sprite_trajectory(), mpeg4_is_resync(), mpeg_decode_init(), mpeg_er_decode_mb(), mpeg_mux_init(), mpeg_mux_write_packet(), mpegaudio_parse(), mpegts_init(), mpegts_read_header(), msrle_decode_end(), msrle_decode_frame(), msrle_decode_init(), msvideo1_decode_end(), msvideo1_decode_frame(), msvideo1_decode_init(), mvc_decode_end(), mvc_decode_frame(), mvc_decode_init(), mxf_compute_ptses_fake_index(), mxf_edit_unit_absolute_offset(), mxf_get_sorted_table_segments(), mxf_handle_missing_index_segment(), mxf_parse_klv(), mxf_read_header(), mxf_read_identification_metadata(), mxf_read_preface_metadata(), mxpeg_decode_end(), mxpeg_decode_frame(), mxpeg_decode_init(), nal_send(), new_output_stream(), next_source(), noise_scale(), nut_read_header(), nut_write_header(), ogm_chapter(), open_input_stream(), opt_old2new(), opt_qscale(), opus_decode_close(), opus_decode_flush(), opus_decode_init(), opus_decode_packet(), opus_find_frame_end(), opus_parse(), output_data(), output_frame(), output_packet(), output_single_frame(), paint_mouse_pointer(), parse(), parse_content_encoding(), parse_content_range(), parse_frame(), parse_mapping(), parse_maps(), parse_mb_skip(), parse_playlist(), parse_psfile(), pcm_decode_frame(), pcm_decode_init(), pcm_dvd_decode_frame(), pcm_dvd_decode_init(), pcm_dvd_decode_samples(), pcm_dvd_decode_uninit(), pcm_dvd_parse_header(), pcx_decode_frame(), pix_abs16_c(), pix_abs16_x2_c(), pix_abs16_xy2_c(), pix_abs16_y2_c(), pix_abs8_c(), pix_abs8_x2_c(), pix_abs8_xy2_c(), pix_abs8_y2_c(), pix_norm1(), pix_norm1_c(), pix_sum(), pix_sum_c(), plot_cqt(), plot_freqs(), plot_spectrum_column(), png_enc_close(), png_enc_init(), png_filter_row(), png_get_interlaced_row(), png_put_interlaced_row(), png_write_image_data(), png_write_row(), pnm_decode_frame(), pnm_get(), poll_frame(), postfilter(), print_file(), print_stats(), process_command(), process_frame(), process_line(), process_work_frame(), ps_tableinit(), pulse_audio_sink_device_cb(), pulse_audio_sink_input_cb(), pulse_context_result(), pulse_context_state(), pulse_control_message(), pulse_event(), pulse_get_device_list(), pulse_get_output_timestamp(), pulse_stream_result(), pulse_stream_state(), pulse_stream_writable(), pulse_update_sink_info(), pulse_update_sink_input_info(), pulse_write_header(), pulse_write_packet(), pulse_write_trailer(), push_frame(), put_audio_specific_config(), put_pack_header(), put_padding_packet(), put_system_header(), put_vcd_padding_sector(), qdm2_decode_close(), qdm2_decode_frame(), qdm2_decode_init(), qsv_decode_close(), qsv_decode_flush(), qsv_decode_frame(), qsv_decode_init(), qt_rtp_parse_packet(), qtrle_decode_end(), qtrle_decode_frame(), qtrle_decode_init(), qtrle_encode_end(), qtrle_encode_frame(), qtrle_encode_init(), query_formats(), rate_control(), rawvideo_read_header(), read_access_unit(), read_block_data(), read_channel_params(), read_close(), read_colorspace_details(), read_decoding_params(), read_fft_data(), read_filter_params(), read_from_fifo(), read_header(), read_huff_channels(), read_matrix_params(), read_packet(), read_restart_header(), read_seek(), read_var_block_data(), remove_extradata(), reorder_pixels(), request_frame(), request_samples(), resample_child_next(), resample_cubic(), resample_linear(), residue_encode(), return_audio_frame(), rgb12to15(), rgb12tobgr12(), rgb15to16_c(), rgb15to16_TMPL(), rgb15to24(), rgb15to32_c(), rgb15to32_TMPL(), rgb15tobgr24_c(), rgb15tobgr24_TMPL(), rgb15tobgr32(), rgb16to15_c(), rgb16to15_TMPL(), rgb16to24(), rgb16to32_c(), rgb16to32_TMPL(), rgb16tobgr24_c(), rgb16tobgr24_TMPL(), rgb16tobgr32(), rgb24to15_c(), rgb24to15_TMPL(), rgb24to16_c(), rgb24to16_TMPL(), rgb24tobgr15_c(), rgb24tobgr15_TMPL(), rgb24tobgr16_c(), rgb24tobgr16_TMPL(), rgb24tobgr32_c(), rgb24tobgr32_TMPL(), rgb32to15_c(), rgb32to15_TMPL(), rgb32to16_c(), rgb32to16_TMPL(), rgb32tobgr15_c(), rgb32tobgr15_TMPL(), rgb32tobgr16_c(), rgb32tobgr16_TMPL(), rgb32tobgr24_c(), rgb32tobgr24_TMPL(), rl2_decode_end(), rl2_decode_frame(), rl2_decode_init(), rle_uncompress(), roq_decode_end(), roq_decode_frame(), roq_decode_init(), rpza_decode_end(), rpza_decode_frame(), rpza_decode_init(), rtcp_send_sr(), rtp_close(), rtp_get_file_handle(), rtp_get_multi_file_handle(), rtp_open(), rtp_read(), rtp_send_ilbc(), rtp_send_mpegaudio(), rtp_send_mpegts_raw(), rtp_send_raw(), rtp_send_samples(), rtp_write(), rtp_write_header(), rtp_write_packet(), rtp_write_trailer(), run_psnr(), rv10_decode_end(), rv10_decode_frame(), rv10_decode_init(), rv10_decode_packet(), rv10_write_header(), rv20_decode_picture_header(), rv30_decode_mb_info(), rv30_loop_filter(), rv34_decode_inter_macroblock(), rv34_decode_inter_mb_header(), rv34_decode_intra_macroblock(), rv34_decode_intra_mb_header(), rv34_decode_mv(), rv34_decode_slice(), rv34_mc(), rv34_output_i16x16(), rv34_output_intra(), rv34_pred_mv(), rv34_pred_mv_b(), rv34_pred_mv_rv3(), rv34_process_block(), rv34_set_deblock_coef(), rv40_decode_intra_types(), rv40_decode_mb_info(), rv40_loop_filter(), s302m_decode_frame(), s302m_encode2_frame(), s302m_encode_init(), sctp_close(), sctp_get_file_handle(), sctp_open(), sctp_read(), sctp_write(), selective_color(), send_mode_a(), send_mode_b(), set_control(), set_param(), set_params(), set_sample_rate_params(), set_srce_frame_dest_pts(), set_work_frame_pts(), sgi_decode_init(), sgirle_decode_end(), sgirle_decode_frame(), sgirle_decode_init(), shorten_decode_close(), shorten_decode_frame(), shorten_decode_init(), show_bits_long(), show_frame(), show_packet(), show_stream(), shuffle_bytes_0321_c(), shuffle_bytes_2103_c(), shuffle_bytes_2103_TMPL(), shuffleplanes_config_input(), shuffleplanes_filter_frame(), sign_extend(), skip_check(), smc_decode_end(), smc_decode_frame(), smc_decode_init(), smooth_end_frame_filter(), smooth_init(), smvjpeg_decode_end(), smvjpeg_decode_frame(), smvjpeg_decode_init(), sofalizer_convolute(), sofalizer_fast_convolute(), source_config_props(), source_init(), source_request_frame(), spatial_frame_pack(), split_init(), srt_alignment_cb(), srt_encode_close(), srt_encode_init(), srt_text_cb(), srt_write_packet(), srtp_close(), srtp_get_file_handle(), srtp_get_multi_file_handle(), srtp_open(), srtp_read(), srtp_write(), sse16_c(), sse4_c(), sse8_c(), sse_mb(), subband_scale(), subband_transform(), sunrast_encode_frame(), sunrast_encode_init(), sunrast_image_write_header(), sunrast_image_write_image(), super2xsai(), svc_encode_close(), svc_encode_frame(), svc_encode_init(), svq1_decode_end(), svq1_decode_frame(), svq1_decode_frame_header(), svq1_decode_init(), svq1_encode_end(), svq1_encode_frame(), svq1_encode_init(), svq1_flush(), svq3_decode_end(), svq3_decode_frame(), svq3_decode_init(), svq3_decode_slice_header(), swr_alloc(), swr_alloc_set_opts(), swr_free(), swri_noise_shaping_TMPL(), synth_frame(), synth_superframe(), synth_window(), tak_decode_close(), tak_decode_frame(), tak_decode_init(), targa_encode_frame(), tcp_close(), tcp_get_file_handle(), tcp_open(), tcp_read(), tcp_shutdown(), tcp_write(), tee_write_packet(), tf_RS(), tgq_decode_init(), tgv_decode_end(), tgv_decode_frame(), tgv_decode_init(), tls_client_handshake(), tls_client_handshake_loop(), tls_open(), tls_read(), tls_shutdown_client(), tls_write(), tqi_decode_init(), truemotion1_decode_end(), truemotion1_decode_frame(), truemotion1_decode_init(), try_push_frame(), try_push_frames(), tta_decode_close(), tta_decode_frame(), tta_decode_init(), tta_encode_close(), tta_encode_frame(), tta_encode_init(), twolame_encode_close(), twolame_encode_frame(), twolame_encode_init(), udp_get_file_handle(), udp_socket_create(), ulti_decode_end(), ulti_decode_frame(), ulti_decode_init(), uninit(), unix_close(), unix_get_file_handle(), unix_open(), unix_read(), unix_write(), unsupported(), update_block_buffers(), update_frames(), update_size(), v210_read_header(), vaapi_mpeg2_decode_slice(), vaapi_mpeg2_start_frame(), vaapi_mpeg4_decode_slice(), vaapi_mpeg4_start_frame(), vaapi_vc1_decode_slice(), vaapi_vc1_start_frame(), var_c(), var_read_float(), var_read_int(), vc1_apply_p_h_loop_filter(), vc1_apply_p_v_loop_filter(), vc1_decode_b_blocks(), vc1_decode_b_mb(), vc1_decode_b_mb_intfi(), vc1_decode_b_mb_intfr(), vc1_decode_i_block(), vc1_decode_i_block_adv(), vc1_decode_i_blocks(), vc1_decode_i_blocks_adv(), vc1_decode_intra_block(), vc1_decode_p_block(), vc1_decode_p_blocks(), vc1_decode_p_mb(), vc1_decode_p_mb_intfi(), vc1_decode_p_mb_intfr(), vc1_decode_skip_blocks(), vc1_get_PTYPE(), vc1_put_signed_blocks_clamped(), vc2_encode_end(), vc2_encode_frame(), vc2_encode_init(), vdpau_mpeg4_start_frame(), vdpau_mpeg_decode_slice(), vdpau_mpeg_start_frame(), vdpau_vc1_decode_slice(), vdpau_vc1_start_frame(), vertical_frame_pack(), videostream_cb(), vmdaudio_decode_frame(), vmdaudio_decode_init(), vmdvideo_decode_end(), vmdvideo_decode_frame(), vmdvideo_decode_init(), VMUL2(), VMUL4(), vp3_decode_end(), vp3_decode_flush(), vp3_decode_init(), vp5_decode_init(), vp6_adjust(), vp6_decode_free(), vp6_decode_init(), vp8_lossless_decode_frame(), vp8_lossy_decode_alpha(), vp8_lossy_decode_frame(), vp9_alloc_frame(), vqa_decode_end(), vqa_decode_frame(), vqa_decode_init(), w_c(), wavesynth_decode(), wavpack_decode_block(), wavpack_decode_end(), wavpack_decode_flush(), wavpack_decode_frame(), wavpack_decode_init(), wavpack_encode_close(), wavpack_encode_frame(), wavpack_encode_init(), webp_decode_close(), webp_decode_frame(), webvtt_encode_close(), webvtt_encode_frame(), webvtt_encode_init(), webvtt_text_cb(), webvtt_write_header(), wmavoice_decode_end(), wmavoice_decode_init(), wmavoice_decode_packet(), wmavoice_flush(), wmv2_add_block(), wmv2_decode_inter_block(), wmv2_decode_motion(), wmv2_pred_motion(), write_globalinfo(), write_header(), write_packet(), write_packet_header(), write_palette(), write_streaminfo(), write_trailer(), write_VLC_TYPE_array(), wv_write_packet(), wv_write_trailer(), x11grab_read_packet(), X264_init(), x8_ac_compensation(), x8_decode_intra_mb(), x8_get_ac_rlf(), x8_get_dc_rlf(), x8_get_orient_vlc(), x8_get_prediction(), x8_get_prediction_chroma(), x8_select_ac_table(), x8_setup_spatial_predictor(), x8_update_predictions(), xa_decode(), xan_decode_chroma(), xan_decode_end(), xan_decode_frame(), xan_decode_frame_type0(), xan_decode_frame_type1(), xan_decode_init(), XAVS_init(), ycocg2rgba(), yop_decode_close(), yop_decode_frame(), and yop_decode_init().

const char int length

Definition at line 631 of file avisynth_c.h.

const char const char * fmt
const char const AVS_Value val

Definition at line 634 of file avisynth_c.h.

Referenced by aa_read_header(), add_entry1(), add_opt(), 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(), atomic_int_set_gcc(), atomic_int_set_suncc(), atomic_int_set_win32(), 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_line(), av_reallocp(), av_reallocp_array(), av_resample(), av_small_strptime(), av_sqrt_sf(), av_write_image_line(), avc_biwgt_16width_msa(), avc_biwgt_4x2_msa(), avc_biwgt_4x4multiple_msa(), avc_biwgt_8width_msa(), avformat_match_stream_specifier(), avio_rb16(), avio_rb24(), avio_rb32(), avio_rb64(), avio_rl16(), avio_rl24(), avio_rl32(), avio_rl64(), avisynth_open_file(), avpriv_atomic_int_set(), aw_pulse_set1(), binkb_get_value(), bytestream2_get_levarint(), celt_cwrsi(), clip_with_log(), codeblock(), compress_alpha(), compute_gammaval(), compute_gammaval709(), config_props(), 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(), dec_bark_env(), dec_gain(), decode_0(), 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_i_block(), decode_init_static(), decode_pivot(), decode_pixel(), decode_qu_spectra(), decode_scale_factors(), decode_sym(), decode_sym_565(), 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_decode_mb_cabac(), ff_h264_decode_mb_cavlc(), ff_lsp2polyf(), ff_mjpeg_encode_dc(), ff_mpeg1_encode_init(), ff_msmpeg4_encode_mb(), ff_mss12_model_update(), ff_poll_frame(), ff_rm_read_mdpr_codecdata(), ff_snappy_uncompress(), ff_text_r8(), ff_vdpau_common_end_frame(), ff_wmv2_decode_mb(), ff_wmv2_encode_mb(), ffio_read_varlen(), ffserver_parse_config_global(), ffserver_parse_config_stream(), fill_rectangle(), filter_frame(), find_marker(), find_next_start_code(), frac_init(), g2m_load_cursor(), get_aiff_header(), get_coeff(), get_coeff_bits(), get_dimension(), get_master_clock(), get_mvdata_interlaced(), get_utf8(), grab_read_header(), h261_decode_gob_header(), h261_encode_motion(), h263_decode_gob_header(), h263p_encode_umotion(), heap_sift(), 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(), id3v2_parse(), init(), init_mv_penalty_and_fcode(), init_report(), 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_value(), loco_decode_plane(), loco_get_rice_param(), loco_update_rice_param(), lpc_prediction(), ls_encode_regular(), ls_encode_runterm(), mace_decode_frame(), main(), memset_bpc(), mode1112(), mode19(), mode20(), model256_update(), model_update(), mov_parse_stsd_data(), mov_read_custom_2plus(), 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(), myrnd(), nelly_decode_block(), old_codec1(), on2avc_decode_pairs(), on2avc_decode_quads(), open_output_file(), pack_fcb_param(), parse_content_length(), parse_int(), parse_key_value_pair(), parse_m3d(), parse_psfile(), parse_section_header(), parse_slave_options(), pp_get_mode_by_name_and_quality(), pulse_audio_sink_input_cb(), pulse_stream_writable(), put16(), put_ebml_sint(), put_ebml_uint(), put_payload_header(), qpeg_decode_inter(), rac_get_bits(), rac_get_model256_sym(), rac_get_model_sym(), read_len_table(), read_table(), request_frame(), resample_common_TMPL(), resample_linear(), resample_linear_TMPL(), resample_one(), rl2_rle_decode(), run_implementation(), sdt_cb(), sender_thread(), 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(), tm2_get_token(), tscc2_decode_frame(), tscc2_decode_mb(), twinvq_memset_float(), unpack_alpha(), unquant_block(), update_metadata(), url_alloc_for_protocol(), utf8len(), v210_planar_pack_10_c(), v210_planar_pack_8_c(), v210_planar_unpack_c(), v410_decode_frame(), v410_encode_frame(), vble_restore_plane(), vble_unpack(), 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(), 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(), yuv2plane1_10_c_template(), yuv2plane1_16_c_template(), yuv2plane1_8_c(), yuv2planeX_10_c_template(), and yuv2planeX_16_c_template().

const char* name

Definition at line 638 of file avisynth_c.h.

const char const char* params

Definition at line 638 of file avisynth_c.h.

const char const char AVS_ApplyFunc apply

Definition at line 638 of file avisynth_c.h.

const char AVS_Value const char** arg_names

Definition at line 643 of file avisynth_c.h.

const AVS_VideoInfo* vi

Definition at line 658 of file avisynth_c.h.

Referenced by main(), and sbr_qmf_deint_neg_c().

const AVS_VideoInfo int align

Definition at line 674 of file avisynth_c.h.

Referenced by av_register_all().

BYTE* dstp
BYTE int dst_pitch

Definition at line 676 of file avisynth_c.h.

Referenced by ivi_output_plane(), and process_slice_uyvy422().

BYTE int const BYTE* srcp
BYTE int const BYTE int src_pitch

Definition at line 676 of file avisynth_c.h.

Referenced by process_slice_uyvy422().

BYTE int const BYTE int int row_size

Definition at line 676 of file avisynth_c.h.

Referenced by decode_lspf(), and encode_frame().

BYTE int const BYTE int int int height
Examples:
muxing.c, and scaling_video.c.

Definition at line 676 of file avisynth_c.h.

Referenced by aasc_decode_frame(), add_rect_clamped_c(), aic_decode_header(), alias_pix_read_probe(), alloc_buffers(), alloc_picture(), anaglyph(), anaglyph_ic(), apply_loop_filter(), av_image_copy(), av_image_fill_pointers(), av_image_get_buffer_size(), av_parse_video_size(), avfilter_graph_dump_to_buf(), avfilter_transform(), avg_tpel_pixels_mc01_c(), avg_tpel_pixels_mc02_c(), avg_tpel_pixels_mc10_c(), avg_tpel_pixels_mc11_c(), avg_tpel_pixels_mc12_c(), avg_tpel_pixels_mc20_c(), avg_tpel_pixels_mc21_c(), avg_tpel_pixels_mc22_c(), bfi_decode_frame(), bitplane_decoding(), bktr_init(), blend_normal_16bit(), blend_normal_8bit(), bmp_decode_frame(), bmp_encode_frame(), build_abs_diff_mask(), calc_combed_score(), calc_diffs(), calculate_display_rect(), calculate_visual_weight(), cdxl_read_packet(), check_codec_match(), codec_reinit(), compare_fields(), config_input(), config_output(), copy_block(), copy_CTB(), copy_frame(), copy_output(), copy_rectangles(), copy_vert(), count_usage(), dc1394_read_common(), decode_13(), decode_clnpass(), decode_colskip(), decode_copy(), decode_dds1(), decode_dsw1(), decode_fctl_chunk(), decode_finish_row(), decode_frame(), decode_frame_header(), decode_frame_headers(), decode_i2_frame(), decode_i_frame(), decode_mvc1(), decode_p_frame(), decode_refpass(), decode_region(), decode_region_intra(), decode_region_masked(), decode_rowskip(), decode_seq_header(), decode_sigpass(), decode_slice(), decode_subband_internal(), decode_tdlt(), decode_tsw1(), decode_vol_header(), decode_wdlt(), DEFINE_BLEND8(), deinterlace_slice(), deinterleave(), deinterleaveBytes_c(), deshake_transform_c(), device_init(), dirac_hpel_filter(), draw_edges_8_c(), draw_horiz_band(), draw_n_color(), dump_paramchange(), duplicate_right_border_pixels(), encode_cblk(), encode_clnpass(), encode_frame(), encode_refpass(), encode_sigpass(), encode_slice(), evalfunc_0(), evalfunc_1(), execute_code(), extract_from_packed(), fade(), ff_ccitt_unpack(), ff_copy_rectangle(), ff_draw_rectangle(), ff_flac_parse_picture(), ff_flv_decode_picture_header(), ff_gmc_c(), ff_h263_decode_picture_header(), ff_h264_biweight_pixels16_8_mmi(), ff_h264_biweight_pixels4_8_mmi(), ff_h264_biweight_pixels8_8_mmi(), ff_h264_decode_seq_parameter_set(), ff_h264_weight_pixels16_8_mmi(), ff_h264_weight_pixels4_8_mmi(), ff_h264_weight_pixels8_8_mmi(), ff_hevc_put_qpel_bi_neon_wrapper(), ff_hevc_put_qpel_neon_wrapper(), ff_hevc_put_qpel_uni_neon_wrapper(), ff_mjpeg_decode_sof(), ff_opencl_apply_unsharp(), ff_print_debug_info2(), ff_rgb24toyv12_c(), ff_rtjpeg_decode_init(), ff_spatial_idwt(), ff_vc1_mc_4mv_luma(), ff_vda_create_decoder(), ff_vda_default_init(), ff_vdpau_common_init(), ff_video_frame_pool_init(), fill_yuv_image(), fillPlane(), fillPlane16(), filter(), filter_3x3(), filter_5x5(), filter_frame(), filter_slice(), filter_slice_chroma(), get_lowest_part_list_y(), get_video_buffer(), gif_image_write_image(), gif_read_header(), gif_read_image(), hqa_decode_frame(), hqx_filter(), idcin_read_header(), init_dimensions(), init_sizes(), inter_predict(), interleaveBytes_c(), interleaveBytes_TMPL(), INTERPOLATE_METHOD(), ir2_decode_plane(), ir2_decode_plane_inter(), jpeg_parse_packet(), kempf_decode_tile(), kempf_restore_buf(), lag_decode_arith_plane(), left_predict(), libopenjpeg_copy_unpacked16(), libopenjpeg_copy_unpacked8(), libopenjpeg_decode_frame(), ljpeg_encode_bgr(), ljpeg_encode_frame(), loco_decode_plane(), luma_abs_diff(), main(), mangle_rgb_planes(), mc_part_weighted(), mca(), median_predict(), mimic_decode_frame(), motion_compensation(), mov_create_dvd_sub_decoder_specific_info(), mov_read_tkhd(), mpeg1_decode_sequence(), mpeg1_encode_sequence_header(), msnwc_tcp_probe(), mss4_decode_frame(), mvc_decode_init(), nuv_header(), old_codec1(), old_codec37(), old_codec47(), opengl_resize(), optimum_block_height(), output_mpd(), paint_mouse_pointer(), parse_object_segment(), pic_arrays_init(), planarCopyWrapper(), postProcess_TMPL(), pp_postprocess(), process_frame(), process_ipmovie_chunk(), process_slice_uyvy422(), process_slice_yuv420p(), process_slice_yuv422p(), process_slice_yuv444p(), put_hevc_epel_bi_h(), put_hevc_epel_bi_hv(), put_hevc_epel_bi_v(), put_hevc_epel_bi_w_h(), put_hevc_epel_bi_w_hv(), put_hevc_epel_bi_w_v(), put_hevc_epel_h(), put_hevc_epel_hv(), put_hevc_epel_uni_h(), put_hevc_epel_uni_hv(), put_hevc_epel_uni_v(), put_hevc_epel_uni_w_h(), put_hevc_epel_uni_w_hv(), put_hevc_epel_uni_w_v(), put_hevc_epel_v(), put_hevc_pel_bi_pixels(), put_hevc_pel_bi_w_pixels(), put_hevc_pel_pixels(), put_hevc_pel_uni_pixels(), put_hevc_pel_uni_w_pixels(), put_hevc_qpel_bi_h(), put_hevc_qpel_bi_hv(), put_hevc_qpel_bi_v(), put_hevc_qpel_bi_w_h(), put_hevc_qpel_bi_w_hv(), put_hevc_qpel_bi_w_v(), put_hevc_qpel_h(), put_hevc_qpel_hv(), put_hevc_qpel_uni_h(), put_hevc_qpel_uni_hv(), put_hevc_qpel_uni_v(), put_hevc_qpel_uni_w_h(), put_hevc_qpel_uni_w_hv(), put_hevc_qpel_uni_w_v(), put_hevc_qpel_v(), put_pcm(), put_signed_rect_clamped_8bit_c(), put_tpel_pixels_mc01_c(), put_tpel_pixels_mc02_c(), put_tpel_pixels_mc10_c(), put_tpel_pixels_mc11_c(), put_tpel_pixels_mc12_c(), put_tpel_pixels_mc20_c(), put_tpel_pixels_mc21_c(), put_tpel_pixels_mc22_c(), qpeg_decode_inter(), qpeg_decode_intra(), qtrle_decode_frame(), read_header(), read_sm_data(), restore_median(), restore_median_il(), restore_rgb_planes(), restore_tqb_pixels(), rotate_faulty_loco(), rv34_mc(), sao_band_filter(), sao_edge_filter(), sao_edge_restore_0(), sao_edge_restore_1(), sao_filter_CTB(), selective_color(), set_processing_window(), siff_parse_vbv1(), smc_decode_stream(), smush_read_header(), smv_img_pnt(), spatial_compose53i_dy_buffered(), spatial_compose53i_init_TMPL(), spatial_compose97i_init_TMPL(), spatial_compose_daub97i_dy_TMPL(), spatial_compose_dd137i_dy_TMPL(), spatial_compose_dd137i_init_TMPL(), spatial_compose_dd97i_dy_TMPL(), spatial_compose_dd97i_init_TMPL(), spatial_compose_dirac53i_dy_TMPL(), spatial_compose_fidelity_TMPL(), spatial_decompose53i(), spatial_decompose97i(), ssim_plane(), store_slice16_c(), store_slice2_c(), store_slice_c(), sunrast_image_write_image(), super2xsai(), svq1_decode_block_intra(), svq1_decode_block_non_intra(), svq1_decode_frame(), svq1_decode_frame_header(), svq1_encode_plane(), svq3_mc_dir_part(), swf_read_packet(), swf_write_header(), swscale(), tdsc_blit(), theora_header(), to_meta_with_crop(), unpack(), utvideo_encode_frame(), uyvytoyuv420_c(), uyvytoyuv420_TMPL(), uyvytoyuv422_c(), uyvytoyuv422_TMPL(), uyvytoyv12_c(), uyvytoyv12_TMPL(), vble_restore_plane(), vdpau_get_buffer(), verify_md5(), decklink_input_callback::VideoInputFrameArrived(), vmd_read_header(), vp7_decode_frame_header(), vp7_fade_frame(), vp8_decode_frame_header(), write_huff_codes(), xan_wc3_decode_frame(), xbm_decode_frame(), xsub_encode(), yuv422ptouyvy_TMPL(), yuv422ptoyuy2_TMPL(), yuv4_generate_header(), yuv4_read_header(), yuv4_write_packet(), yuvPlanartouyvy_c(), yuvPlanartouyvy_TMPL(), yuvPlanartoyuy2_c(), yuvPlanartoyuy2_TMPL(), yuy2toyv12_c(), yuy2toyv12_TMPL(), yuyvtoyuv420_c(), yuyvtoyuv420_TMPL(), yuyvtoyuv422_c(), yuyvtoyuv422_TMPL(), yv12touyvy_TMPL(), yv12toyuy2_TMPL(), yvu9_to_yuy2_c(), yvu9_to_yuy2_TMPL(), and zero12v_decode_frame().

AVS_ShutdownFunc function

Definition at line 679 of file avisynth_c.h.

AVS_VideoFrame int rel_offset

Definition at line 681 of file avisynth_c.h.

AVS_VideoFrame int int new_pitch

Definition at line 681 of file avisynth_c.h.

AVS_VideoFrame int int int new_row_size

Definition at line 681 of file avisynth_c.h.

AVS_VideoFrame int int int int new_height

Definition at line 681 of file avisynth_c.h.

Referenced by opengl_configure_texture().

int mem
const char* newdir

Definition at line 686 of file avisynth_c.h.

AVS_VideoFrame int int int int int rel_offsetU

Definition at line 701 of file avisynth_c.h.

AVS_VideoFrame int int int int int int rel_offsetV

Definition at line 701 of file avisynth_c.h.

AVS_VideoFrame int int int int int int int new_pitchUV

Definition at line 701 of file avisynth_c.h.