OpenFFmpeg
Classes | Macros | Typedefs | Variables
vapoursynth.c File Reference

VapourSynth demuxer. More...

#include <limits.h>
#include <VapourSynth.h>
#include <VSScript.h>
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/eval.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avformat.h"
#include "internal.h"

Classes

struct  VSState
 
struct  VSContext
 
struct  vsframe_ref_data
 

Macros

#define OFFSET(x)   offsetof(VSContext, x)
 
#define A   AV_OPT_FLAG_AUDIO_PARAM
 
#define D   AV_OPT_FLAG_DECODING_PARAM
 

Typedefs

typedef struct VSContext VSContext
 

Variables

AVInputFormat ff_vapoursynth_demuxer
 

Detailed Description

VapourSynth demuxer.

Synthesizes vapour (?)

Variable Documentation

§ ff_vapoursynth_demuxer

AVInputFormat ff_vapoursynth_demuxer
Initial value:
= {
.name = "vapoursynth",
.long_name = NULL_IF_CONFIG_SMALL("VapourSynth demuxer"),
.priv_data_size = sizeof(VSContext),
.read_probe = probe_vs,
.read_header = read_header_vs,
.read_packet = read_packet_vs,
.read_close = read_close_vs,
.read_seek = read_seek_vs,
.priv_class = &class_vs,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: vapoursynth.c:44