#include "avformat.h"
#include "internal.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 191 of file avisynth.c.
static int avisynth_read_header | ( | AVFormatContext * | s, | |
AVFormatParameters * | ap | |||
) | [static] |
Definition at line 44 of file avisynth.c.
static int avisynth_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Definition at line 158 of file avisynth.c.
static int avisynth_read_seek | ( | AVFormatContext * | s, | |
int | stream_index, | |||
int64_t | pts, | |||
int | flags | |||
) | [static] |
Definition at line 207 of file avisynth.c.
Initial value:
{ .name = "avs", .long_name = NULL_IF_CONFIG_SMALL("AVISynth"), .priv_data_size = sizeof(AVISynthContext), .read_header = avisynth_read_header, .read_packet = avisynth_read_packet, .read_close = avisynth_read_close, .read_seek = avisynth_read_seek, .extensions = "avs", }
Definition at line 220 of file avisynth.c.