FFmpeg
|
id RoQ format file demuxer by Mike Melanson (melan) for more information on the .roq file format, visit: son@ pcisy s.ne thttp://www.csse.monash.edu.au/~timf/ More...
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "avio_internal.h"
Go to the source code of this file.
Data Structures | |
struct | RoqDemuxContext |
Macros | |
#define | RoQ_MAGIC_NUMBER 0x1084 |
#define | RoQ_CHUNK_PREAMBLE_SIZE 8 |
#define | RoQ_AUDIO_SAMPLE_RATE 22050 |
#define | RoQ_CHUNKS_TO_SCAN 30 |
#define | RoQ_INFO 0x1001 |
#define | RoQ_QUAD_CODEBOOK 0x1002 |
#define | RoQ_QUAD_VQ 0x1011 |
#define | RoQ_SOUND_MONO 0x1020 |
#define | RoQ_SOUND_STEREO 0x1021 |
Functions | |
static int | roq_probe (AVProbeData *p) |
static int | roq_read_header (AVFormatContext *s) |
static int | roq_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_roq_demuxer |
id RoQ format file demuxer by Mike Melanson (melan) for more information on the .roq file format, visit: son@ pcisy s.ne thttp://www.csse.monash.edu.au/~timf/
Definition in file idroqdec.c.
#define RoQ_MAGIC_NUMBER 0x1084 |
Definition at line 36 of file idroqdec.c.
Referenced by roq_probe().
#define RoQ_CHUNK_PREAMBLE_SIZE 8 |
Definition at line 37 of file idroqdec.c.
Referenced by roq_read_header(), and roq_read_packet().
#define RoQ_AUDIO_SAMPLE_RATE 22050 |
Definition at line 38 of file idroqdec.c.
Referenced by roq_read_packet().
#define RoQ_CHUNKS_TO_SCAN 30 |
Definition at line 39 of file idroqdec.c.
#define RoQ_INFO 0x1001 |
Definition at line 41 of file idroqdec.c.
Referenced by roq_read_packet().
#define RoQ_QUAD_CODEBOOK 0x1002 |
Definition at line 42 of file idroqdec.c.
Referenced by roq_read_packet().
#define RoQ_QUAD_VQ 0x1011 |
Definition at line 43 of file idroqdec.c.
Referenced by roq_read_packet().
#define RoQ_SOUND_MONO 0x1020 |
Definition at line 44 of file idroqdec.c.
Referenced by roq_read_packet().
#define RoQ_SOUND_STEREO 0x1021 |
Definition at line 45 of file idroqdec.c.
Referenced by roq_read_packet().
|
static |
Definition at line 62 of file idroqdec.c.
|
static |
Definition at line 71 of file idroqdec.c.
|
static |
Definition at line 94 of file idroqdec.c.
AVInputFormat ff_roq_demuxer |
Definition at line 237 of file idroqdec.c.