FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions | Variables
acm.c File Reference
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "rawdec.h"
#include "internal.h"

Go to the source code of this file.

Functions

static int acm_probe (AVProbeData *p)
 
static int acm_read_header (AVFormatContext *s)
 

Variables

AVInputFormat ff_acm_demuxer
 

Function Documentation

static int acm_probe ( AVProbeData p)
static

Definition at line 27 of file acm.c.

static int acm_read_header ( AVFormatContext s)
static

Definition at line 35 of file acm.c.

Variable Documentation

AVInputFormat ff_acm_demuxer
Initial value:
= {
.name = "acm",
.long_name = NULL_IF_CONFIG_SMALL("Interplay ACM"),
.read_probe = acm_probe,
.read_header = acm_read_header,
.extensions = "acm",
.raw_codec_id = AV_CODEC_ID_INTERPLAY_ACM,
}
#define AVFMT_NOBINSEARCH
Format does not allow to fall back on binary search via read_timestamp.
Definition: avformat.h:490
static int acm_read_header(AVFormatContext *s)
Definition: acm.c:35
static int acm_probe(AVProbeData *p)
Definition: acm.c:27
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
Definition: rawdec.c:35
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition: avformat.h:484
#define AVFMT_NOGENSEARCH
Format does not allow to fall back on generic search.
Definition: avformat.h:491
#define AVFMT_NO_BYTE_SEEK
Format does not allow seeking by bytes.
Definition: avformat.h:492

Definition at line 66 of file acm.c.