FFmpeg
|
#include "avformat.h"
#include "internal.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/avassert.h"
Go to the source code of this file.
Data Structures | |
struct | ArgoASFFileHeader |
struct | ArgoASFChunkHeader |
struct | ArgoASFDemuxContext |
Macros | |
#define | ASF_TAG MKTAG('A', 'S', 'F', '\0') |
#define | ASF_FILE_HEADER_SIZE 24 |
#define | ASF_CHUNK_HEADER_SIZE 20 |
Enumerations | |
enum | { ASF_CF_BITS_PER_SAMPLE = (1 << 0), ASF_CF_STEREO = (1 << 1), ASF_CF_ALWAYS1_1 = (1 << 2), ASF_CF_ALWAYS1_2 = (1 << 3), ASF_CF_ALWAYS1 = ASF_CF_ALWAYS1_1 | ASF_CF_ALWAYS1_2, ASF_CF_ALWAYS0 = ~(ASF_CF_BITS_PER_SAMPLE | ASF_CF_STEREO | ASF_CF_ALWAYS1) } |
Functions | |
static void | argo_asf_parse_file_header (ArgoASFFileHeader *hdr, const uint8_t *buf) |
static void | argo_asf_parse_chunk_header (ArgoASFChunkHeader *hdr, const uint8_t *buf) |
static int | argo_asf_is_known_version (const ArgoASFFileHeader *hdr) |
static int | argo_asf_probe (const AVProbeData *p) |
static int | argo_asf_read_header (AVFormatContext *s) |
static int | argo_asf_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_argo_asf_demuxer |
#define ASF_FILE_HEADER_SIZE 24 |
Definition at line 28 of file argo_asf.c.
#define ASF_CHUNK_HEADER_SIZE 20 |
Definition at line 29 of file argo_asf.c.
anonymous enum |
Enumerator | |
---|---|
ASF_CF_BITS_PER_SAMPLE | |
ASF_CF_STEREO | |
ASF_CF_ALWAYS1_1 | |
ASF_CF_ALWAYS1_2 | |
ASF_CF_ALWAYS1 | |
ASF_CF_ALWAYS0 |
Definition at line 49 of file argo_asf.c.
|
static |
Definition at line 65 of file argo_asf.c.
Referenced by argo_asf_probe(), and argo_asf_read_header().
|
static |
Definition at line 76 of file argo_asf.c.
Referenced by argo_asf_read_header().
|
static |
Definition at line 92 of file argo_asf.c.
Referenced by argo_asf_probe(), and argo_asf_read_header().
|
static |
Definition at line 99 of file argo_asf.c.
|
static |
Definition at line 116 of file argo_asf.c.
|
static |
Definition at line 218 of file argo_asf.c.
AVInputFormat ff_argo_asf_demuxer |
Definition at line 246 of file argo_asf.c.