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

Go to the source code of this file.

Functions

static int musx_probe (AVProbeData *p)
 
static int musx_read_header (AVFormatContext *s)
 
static int musx_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

AVInputFormat ff_musx_demuxer
 

Function Documentation

static int musx_probe ( AVProbeData p)
static

Definition at line 26 of file musx.c.

static int musx_read_header ( AVFormatContext s)
static

Definition at line 34 of file musx.c.

static int musx_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 163 of file musx.c.

Variable Documentation

AVInputFormat ff_musx_demuxer
Initial value:
= {
.name = "musx",
.long_name = NULL_IF_CONFIG_SMALL("Eurocom MUSX"),
.read_probe = musx_probe,
.read_header = musx_read_header,
.read_packet = musx_read_packet,
.extensions = "musx",
}
static int musx_probe(AVProbeData *p)
Definition: musx.c:26
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static int musx_read_header(AVFormatContext *s)
Definition: musx.c:34
static int musx_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: musx.c:163

Definition at line 170 of file musx.c.