• 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

55 #define AVSC_INLINE static __inline
220 AVSC_INLINE int avs_has_video(const AVS_VideoInfo * p)
223 AVSC_INLINE int avs_has_audio(const AVS_VideoInfo * p)
226 AVSC_INLINE int avs_is_rgb(const AVS_VideoInfo * p)
229 AVSC_INLINE int avs_is_rgb24(const AVS_VideoInfo * p)
232 AVSC_INLINE int avs_is_rgb32(const AVS_VideoInfo * p)
235 AVSC_INLINE int avs_is_yuv(const AVS_VideoInfo * p)
238 AVSC_INLINE int avs_is_yuy2(const AVS_VideoInfo * p)
241 AVSC_INLINE int avs_is_yv24(const AVS_VideoInfo * p)
244 AVSC_INLINE int avs_is_yv16(const AVS_VideoInfo * p)
247 AVSC_INLINE int avs_is_yv12(const AVS_VideoInfo * p)
250 AVSC_INLINE int avs_is_yv411(const AVS_VideoInfo * p)
253 AVSC_INLINE int avs_is_y8(const AVS_VideoInfo * p)
256 AVSC_INLINE int avs_is_property(const AVS_VideoInfo * p, int property)
259 AVSC_INLINE int avs_is_planar(const AVS_VideoInfo * p)
262 AVSC_INLINE int avs_is_color_space(const AVS_VideoInfo * p, int c_space)
265 AVSC_INLINE int avs_is_field_based(const AVS_VideoInfo * p)
268 AVSC_INLINE int avs_is_parity_known(const AVS_VideoInfo * p)
271 AVSC_INLINE int avs_is_bff(const AVS_VideoInfo * p)
274 AVSC_INLINE int avs_is_tff(const AVS_VideoInfo * p)
277 AVSC_INLINE int avs_bits_per_pixel(const AVS_VideoInfo * p)
288 AVSC_INLINE int avs_bytes_from_pixels(const AVS_VideoInfo * p, int pixels)
291 AVSC_INLINE int avs_row_size(const AVS_VideoInfo * p)
294 AVSC_INLINE int avs_bmp_size(const AVS_VideoInfo * vi)
297 AVSC_INLINE int avs_samples_per_second(const AVS_VideoInfo * p)
301 AVSC_INLINE int avs_bytes_per_channel_sample(const AVS_VideoInfo * p)
312 AVSC_INLINE int avs_bytes_per_audio_sample(const AVS_VideoInfo * p)
315 AVSC_INLINE INT64 avs_audio_samples_from_frames(const AVS_VideoInfo * p, INT64 frames)
318 AVSC_INLINE int avs_frames_from_audio_samples(const AVS_VideoInfo * p, INT64 samples)
321 AVSC_INLINE INT64 avs_audio_samples_from_bytes(const AVS_VideoInfo * p, INT64 bytes)
324 AVSC_INLINE INT64 avs_bytes_from_audio_samples(const AVS_VideoInfo * p, INT64 samples)
327 AVSC_INLINE int avs_audio_channels(const AVS_VideoInfo * p)
330 AVSC_INLINE int avs_sample_type(const AVS_VideoInfo * p)
334 AVSC_INLINE void avs_set_property(AVS_VideoInfo * p, int property)
337 AVSC_INLINE void avs_clear_property(AVS_VideoInfo * p, int property)
340 AVSC_INLINE void avs_set_field_based(AVS_VideoInfo * p, int isfieldbased)
343 AVSC_INLINE void avs_set_fps(AVS_VideoInfo * p, unsigned numerator, unsigned denominator)
353 AVSC_INLINE int avs_is_same_colorspace(AVS_VideoInfo * x, AVS_VideoInfo * y)
394 AVSC_INLINE int avs_get_pitch(const AVS_VideoFrame * p) {
397 AVSC_INLINE int avs_get_pitch_p(const AVS_VideoFrame * p, int plane) {
402 AVSC_INLINE int avs_get_row_size(const AVS_VideoFrame * p) {
405 AVSC_INLINE int avs_get_row_size_p(const AVS_VideoFrame * p, int plane) {
427 AVSC_INLINE int avs_get_height(const AVS_VideoFrame * p) {
430 AVSC_INLINE int avs_get_height_p(const AVS_VideoFrame * p, int plane) {
438 AVSC_INLINE const BYTE* avs_get_read_ptr(const AVS_VideoFrame * p) {
441 AVSC_INLINE const BYTE* avs_get_read_ptr_p(const AVS_VideoFrame * p, int plane)
449 AVSC_INLINE int avs_is_writable(const AVS_VideoFrame * p) {
452 AVSC_INLINE BYTE* avs_get_write_ptr(const AVS_VideoFrame * p)
461 AVSC_INLINE BYTE* avs_get_write_ptr_p(const AVS_VideoFrame * p, int plane)
483 AVSC_INLINE void avs_release_frame(AVS_VideoFrame * f)
485 AVSC_INLINE AVS_VideoFrame * avs_copy_frame(AVS_VideoFrame * f)
527 AVSC_INLINE int avs_defined(AVS_Value v) { return v.type != 'v'; }
528 AVSC_INLINE int avs_is_clip(AVS_Value v) { return v.type == 'c'; }
529 AVSC_INLINE int avs_is_bool(AVS_Value v) { return v.type == 'b'; }
530 AVSC_INLINE int avs_is_int(AVS_Value v) { return v.type == 'i'; }
531 AVSC_INLINE int avs_is_float(AVS_Value v) { return v.type == 'f' || v.type == 'i'; }
532 AVSC_INLINE int avs_is_string(AVS_Value v) { return v.type == 's'; }
533 AVSC_INLINE int avs_is_array(AVS_Value v) { return v.type == 'a'; }
534 AVSC_INLINE int avs_is_error(AVS_Value v) { return v.type == 'e'; }
539 AVSC_INLINE int avs_as_bool(AVS_Value v)
541 AVSC_INLINE int avs_as_int(AVS_Value v)
543 AVSC_INLINE const char * avs_as_string(AVS_Value v)
545 AVSC_INLINE double avs_as_float(AVS_Value v)
547 AVSC_INLINE const char * avs_as_error(AVS_Value v)
549 AVSC_INLINE const AVS_Value * avs_as_array(AVS_Value v)
551 AVSC_INLINE int avs_array_size(AVS_Value v)
553 AVSC_INLINE AVS_Value avs_array_elt(AVS_Value v, int index)
558 AVSC_INLINE AVS_Value avs_new_value_bool(int v0)
560 AVSC_INLINE AVS_Value avs_new_value_int(int v0)
562 AVSC_INLINE AVS_Value avs_new_value_string(const char * v0)
564 AVSC_INLINE AVS_Value avs_new_value_float(float v0)
566 AVSC_INLINE AVS_Value avs_new_value_error(const char * v0)
569 AVSC_INLINE AVS_Value avs_new_value_clip(AVS_Clip * v0)
572 AVSC_INLINE AVS_Value avs_new_value_array(AVS_Value * v0, int size)
700 AVSC_INLINE
705 AVSC_INLINE
806 AVSC_INLINE AVS_Library * avs_load_library() {
872 AVSC_INLINE void avs_free_library(AVS_Library *library) {