• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/compat/avisynth/

Lines Matching refs:AVSC_INLINE

54 #define AVSC_INLINE static __inline
176 AVSC_INLINE int avs_has_video(const AVS_VideoInfo * p)
179 AVSC_INLINE int avs_has_audio(const AVS_VideoInfo * p)
182 AVSC_INLINE int avs_is_rgb(const AVS_VideoInfo * p)
185 AVSC_INLINE int avs_is_rgb24(const AVS_VideoInfo * p)
188 AVSC_INLINE int avs_is_rgb32(const AVS_VideoInfo * p)
191 AVSC_INLINE int avs_is_yuv(const AVS_VideoInfo * p)
194 AVSC_INLINE int avs_is_yuy2(const AVS_VideoInfo * p)
197 AVSC_INLINE int avs_is_yv12(const AVS_VideoInfo * p)
200 AVSC_INLINE int avs_is_color_space(const AVS_VideoInfo * p, int c_space)
203 AVSC_INLINE int avs_is_property(const AVS_VideoInfo * p, int property)
206 AVSC_INLINE int avs_is_planar(const AVS_VideoInfo * p)
209 AVSC_INLINE int avs_is_field_based(const AVS_VideoInfo * p)
212 AVSC_INLINE int avs_is_parity_known(const AVS_VideoInfo * p)
215 AVSC_INLINE int avs_is_bff(const AVS_VideoInfo * p)
218 AVSC_INLINE int avs_is_tff(const AVS_VideoInfo * p)
221 AVSC_INLINE int avs_bits_per_pixel(const AVS_VideoInfo * p)
232 AVSC_INLINE int avs_bytes_from_pixels(const AVS_VideoInfo * p, int pixels)
235 AVSC_INLINE int avs_row_size(const AVS_VideoInfo * p)
238 AVSC_INLINE int avs_bmp_size(const AVS_VideoInfo * vi)
241 AVSC_INLINE int avs_samples_per_second(const AVS_VideoInfo * p)
245 AVSC_INLINE int avs_bytes_per_channel_sample(const AVS_VideoInfo * p)
256 AVSC_INLINE int avs_bytes_per_audio_sample(const AVS_VideoInfo * p)
259 AVSC_INLINE INT64 avs_audio_samples_from_frames(const AVS_VideoInfo * p, INT64 frames)
262 AVSC_INLINE int avs_frames_from_audio_samples(const AVS_VideoInfo * p, INT64 samples)
265 AVSC_INLINE INT64 avs_audio_samples_from_bytes(const AVS_VideoInfo * p, INT64 bytes)
268 AVSC_INLINE INT64 avs_bytes_from_audio_samples(const AVS_VideoInfo * p, INT64 samples)
271 AVSC_INLINE int avs_audio_channels(const AVS_VideoInfo * p)
274 AVSC_INLINE int avs_sample_type(const AVS_VideoInfo * p)
278 AVSC_INLINE void avs_set_property(AVS_VideoInfo * p, int property)
281 AVSC_INLINE void avs_clear_property(AVS_VideoInfo * p, int property)
284 AVSC_INLINE void avs_set_field_based(AVS_VideoInfo * p, int isfieldbased)
287 AVSC_INLINE void avs_set_fps(AVS_VideoInfo * p, unsigned numerator, unsigned denominator)
297 AVSC_INLINE int avs_is_same_colorspace(AVS_VideoInfo * x, AVS_VideoInfo * y)
337 AVSC_INLINE int avs_get_pitch(const AVS_VideoFrame * p) {
340 AVSC_INLINE int avs_get_pitch_p(const AVS_VideoFrame * p, int plane) {
345 AVSC_INLINE int avs_get_row_size(const AVS_VideoFrame * p) {
348 AVSC_INLINE int avs_get_row_size_p(const AVS_VideoFrame * p, int plane) {
370 AVSC_INLINE int avs_get_height(const AVS_VideoFrame * p) {
373 AVSC_INLINE int avs_get_height_p(const AVS_VideoFrame * p, int plane) {
381 AVSC_INLINE const unsigned char* avs_get_read_ptr(const AVS_VideoFrame * p) {
384 AVSC_INLINE const unsigned char* avs_get_read_ptr_p(const AVS_VideoFrame * p, int plane)
392 AVSC_INLINE int avs_is_writable(const AVS_VideoFrame * p) {
395 AVSC_INLINE unsigned char* avs_get_write_ptr(const AVS_VideoFrame * p)
404 AVSC_INLINE unsigned char* avs_get_write_ptr_p(const AVS_VideoFrame * p, int plane)
432 AVSC_INLINE void avs_release_frame(AVS_VideoFrame * f)
434 AVSC_INLINE AVS_VideoFrame * avs_copy_frame(AVS_VideoFrame * f)
477 AVSC_INLINE int avs_defined(AVS_Value v) { return v.type != 'v'; }
478 AVSC_INLINE int avs_is_clip(AVS_Value v) { return v.type == 'c'; }
479 AVSC_INLINE int avs_is_bool(AVS_Value v) { return v.type == 'b'; }
480 AVSC_INLINE int avs_is_int(AVS_Value v) { return v.type == 'i'; }
481 AVSC_INLINE int avs_is_float(AVS_Value v) { return v.type == 'f' || v.type == 'i'; }
482 AVSC_INLINE int avs_is_string(AVS_Value v) { return v.type == 's'; }
483 AVSC_INLINE int avs_is_array(AVS_Value v) { return v.type == 'a'; }
484 AVSC_INLINE int avs_is_error(AVS_Value v) { return v.type == 'e'; }
496 AVSC_INLINE int avs_as_bool(AVS_Value v)
498 AVSC_INLINE int avs_as_int(AVS_Value v)
500 AVSC_INLINE const char * avs_as_string(AVS_Value v)
502 AVSC_INLINE double avs_as_float(AVS_Value v)
504 AVSC_INLINE const char * avs_as_error(AVS_Value v)
506 AVSC_INLINE const AVS_Value * avs_as_array(AVS_Value v)
508 AVSC_INLINE int avs_array_size(AVS_Value v)
510 AVSC_INLINE AVS_Value avs_array_elt(AVS_Value v, int index)
515 AVSC_INLINE AVS_Value avs_new_value_bool(int v0)
517 AVSC_INLINE AVS_Value avs_new_value_int(int v0)
519 AVSC_INLINE AVS_Value avs_new_value_string(const char * v0)
521 AVSC_INLINE AVS_Value avs_new_value_float(float v0)
523 AVSC_INLINE AVS_Value avs_new_value_error(const char * v0)
526 AVSC_INLINE AVS_Value avs_new_value_clip(AVS_Clip * v0)
529 AVSC_INLINE AVS_Value avs_new_value_array(AVS_Value * v0, int size)
673 AVSC_INLINE
678 AVSC_INLINE