#include "avformat.h"
#include "riff.h"
#include <windows.h>
#include <vfw.h>
Go to the source code of this file.
Data Structures | |
struct | AVISynthStream |
struct | AVISynthContext |
Functions | |
static int | avisynth_read_header (AVFormatContext *s, AVFormatParameters *ap) |
static int | avisynth_read_packet (AVFormatContext *s, AVPacket *pkt) |
static int | avisynth_read_close (AVFormatContext *s) |
static int | avisynth_read_seek (AVFormatContext *s, int stream_index, int64_t pts, int flags) |
Variables | |
AVInputFormat | ff_avisynth_demuxer |
static int avisynth_read_close | ( | AVFormatContext * | s | ) | [static] |
Definition at line 188 of file avisynth.c.
static int avisynth_read_header | ( | AVFormatContext * | s, | |
AVFormatParameters * | ap | |||
) | [static] |
Definition at line 43 of file avisynth.c.
static int avisynth_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Definition at line 155 of file avisynth.c.
static int avisynth_read_seek | ( | AVFormatContext * | s, | |
int | stream_index, | |||
int64_t | pts, | |||
int | flags | |||
) | [static] |
Definition at line 204 of file avisynth.c.
Initial value:
{ "avs", NULL_IF_CONFIG_SMALL("AVISynth"), sizeof(AVISynthContext), NULL, avisynth_read_header, avisynth_read_packet, avisynth_read_close, avisynth_read_seek, NULL, 0, "avs", }
Definition at line 217 of file avisynth.c.