rawdec.h File Reference
#include "avformat.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"

Go to the source code of this file.

Data Structures

struct  RawAudioDemuxerContext
 
struct  FFRawVideoDemuxerContext
 

Macros

#define FF_RAWVIDEO_DEMUXER_CLASS(name)
 
#define FF_DEF_RAWVIDEO_DEMUXER(shortname, longname, probe, ext, id)
 

Typedefs

typedef struct
RawAudioDemuxerContext 
RawAudioDemuxerContext
 
typedef struct
FFRawVideoDemuxerContext 
FFRawVideoDemuxerContext
 

Functions

int ff_raw_read_header (AVFormatContext *s, AVFormatParameters *ap)
 
int ff_raw_read_partial_packet (AVFormatContext *s, AVPacket *pkt)
 
int ff_raw_audio_read_header (AVFormatContext *s, AVFormatParameters *ap)
 
int ff_raw_video_read_header (AVFormatContext *s, AVFormatParameters *ap)
 

Variables

const AVOption ff_rawvideo_options []
 

Macro Definition Documentation

#define FF_DEF_RAWVIDEO_DEMUXER (   shortname,
  longname,
  probe,
  ext,
  id 
)
Value:
AVInputFormat ff_ ## shortname ## _demuxer = {\
.name = #shortname,\
.long_name = NULL_IF_CONFIG_SMALL(longname),\
.read_probe = probe,\
.read_header = ff_raw_video_read_header,\
.read_packet = ff_raw_read_partial_packet,\
.extensions = ext,\
.value = id,\
.priv_data_size = sizeof(FFRawVideoDemuxerContext),\
.priv_class = &shortname ## _demuxer_class,\
};
#define FF_RAWVIDEO_DEMUXER_CLASS(name)
Definition: rawdec.h:52
struct AVInputFormat AVInputFormat
struct FFRawVideoDemuxerContext FFRawVideoDemuxerContext
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:191
static int probe(AVProbeData *p)
Definition: anm.c:50
int ff_raw_video_read_header(AVFormatContext *s, AVFormatParameters *ap)
Definition: rawdec.c:139
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:376
enum CodecID id
Definition: mxfenc.c:85
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
Definition: rawdec.c:103
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:460

Definition at line 60 of file rawdec.h.

#define FF_RAWVIDEO_DEMUXER_CLASS (   name)
Value:
static const AVClass name ## _demuxer_class = {\
.class_name = #name " demuxer",\
.item_name = av_default_item_name,\
.option = ff_rawvideo_options,\
.version = LIBAVUTIL_VERSION_INT,\
};
const AVOption ff_rawvideo_options[]
Definition: rawdec.c:174
LIBAVUTIL_VERSION_INT
Definition: eval.c:50
av_default_item_name
Definition: dnxhdenc.c:43
Describe the class of an AVClass context structure.
Definition: log.h:33
const char * name
Definition: audioconvert.c:61

Definition at line 52 of file rawdec.h.

Typedef Documentation

Function Documentation

int ff_raw_audio_read_header ( AVFormatContext s,
AVFormatParameters ap 
)

Definition at line 123 of file rawdec.c.

int ff_raw_read_header ( AVFormatContext s,
AVFormatParameters ap 
)

Definition at line 32 of file rawdec.c.

int ff_raw_read_partial_packet ( AVFormatContext s,
AVPacket pkt 
)

Definition at line 103 of file rawdec.c.

int ff_raw_video_read_header ( AVFormatContext s,
AVFormatParameters ap 
)

Definition at line 139 of file rawdec.c.

Variable Documentation

const AVOption ff_rawvideo_options[]

Definition at line 174 of file rawdec.c.