FFmpeg
|
4X Technologies file demuxer by Mike Melanson (melan) for more information on the .4xm file format, visit: son@ pcisy s.ne thttp://www.pcisys.net/~melanson/codecs/ More...
#include "libavutil/intreadwrite.h"
#include "libavutil/intfloat.h"
#include "avformat.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | AudioTrack |
struct | FourxmDemuxContext |
Macros | |
#define | RIFF_TAG MKTAG('R', 'I', 'F', 'F') |
#define | FOURXMV_TAG MKTAG('4', 'X', 'M', 'V') |
#define | LIST_TAG MKTAG('L', 'I', 'S', 'T') |
#define | HEAD_TAG MKTAG('H', 'E', 'A', 'D') |
#define | TRK__TAG MKTAG('T', 'R', 'K', '_') |
#define | MOVI_TAG MKTAG('M', 'O', 'V', 'I') |
#define | VTRK_TAG MKTAG('V', 'T', 'R', 'K') |
#define | STRK_TAG MKTAG('S', 'T', 'R', 'K') |
#define | std__TAG MKTAG('s', 't', 'd', '_') |
#define | name_TAG MKTAG('n', 'a', 'm', 'e') |
#define | vtrk_TAG MKTAG('v', 't', 'r', 'k') |
#define | strk_TAG MKTAG('s', 't', 'r', 'k') |
#define | ifrm_TAG MKTAG('i', 'f', 'r', 'm') |
#define | pfrm_TAG MKTAG('p', 'f', 'r', 'm') |
#define | cfrm_TAG MKTAG('c', 'f', 'r', 'm') |
#define | ifr2_TAG MKTAG('i', 'f', 'r', '2') |
#define | pfr2_TAG MKTAG('p', 'f', 'r', '2') |
#define | cfr2_TAG MKTAG('c', 'f', 'r', '2') |
#define | snd__TAG MKTAG('s', 'n', 'd', '_') |
#define | vtrk_SIZE 0x44 |
#define | strk_SIZE 0x28 |
#define | GET_LIST_HEADER() |
Functions | |
static int | fourxm_probe (AVProbeData *p) |
static int | parse_vtrk (AVFormatContext *s, FourxmDemuxContext *fourxm, uint8_t *buf, int size, int left) |
static int | parse_strk (AVFormatContext *s, FourxmDemuxContext *fourxm, uint8_t *buf, int size, int left) |
static int | fourxm_read_header (AVFormatContext *s) |
static int | fourxm_read_packet (AVFormatContext *s, AVPacket *pkt) |
static int | fourxm_read_close (AVFormatContext *s) |
Variables | |
AVInputFormat | ff_fourxm_demuxer |
4X Technologies file demuxer by Mike Melanson (melan) for more information on the .4xm file format, visit: son@ pcisy s.ne thttp://www.pcisys.net/~melanson/codecs/
Definition in file 4xm.c.
Definition at line 35 of file 4xm.c.
Referenced by fourxm_probe().
Definition at line 36 of file 4xm.c.
Referenced by fourxm_probe().
Definition at line 37 of file 4xm.c.
Referenced by fourxm_read_packet().
Definition at line 38 of file 4xm.c.
Referenced by fourxm_read_header().
Definition at line 40 of file 4xm.c.
Referenced by fourxm_read_header().
Definition at line 43 of file 4xm.c.
Referenced by fourxm_read_header().
Definition at line 45 of file 4xm.c.
Referenced by fourxm_read_header().
Definition at line 46 of file 4xm.c.
Referenced by fourxm_read_header().
Definition at line 47 of file 4xm.c.
Referenced by fourxm_read_packet().
Definition at line 48 of file 4xm.c.
Referenced by fourxm_read_packet().
Definition at line 49 of file 4xm.c.
Referenced by fourxm_read_packet().
Definition at line 50 of file 4xm.c.
Referenced by fourxm_read_packet().
Definition at line 51 of file 4xm.c.
Referenced by fourxm_read_packet().
Definition at line 52 of file 4xm.c.
Referenced by fourxm_read_packet().
Definition at line 53 of file 4xm.c.
Referenced by fourxm_read_packet().
#define vtrk_SIZE 0x44 |
Definition at line 55 of file 4xm.c.
Referenced by parse_vtrk().
#define strk_SIZE 0x28 |
Definition at line 56 of file 4xm.c.
Referenced by parse_strk().
#define GET_LIST_HEADER | ( | ) |
Definition at line 58 of file 4xm.c.
Referenced by fourxm_read_header().
|
static |
|
static |
Definition at line 92 of file 4xm.c.
Referenced by fourxm_read_header().
|
static |
Definition at line 126 of file 4xm.c.
Referenced by fourxm_read_header().
|
static |
|
static |
|
static |
AVInputFormat ff_fourxm_demuxer |