#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "pcm.h"
Go to the source code of this file.
Defines | |
#define | AU_UNKNOWN_SIZE ((uint32_t)(~0)) |
#define | SOL_DPCM 1 |
#define | SOL_16BIT 4 |
#define | SOL_STEREO 16 |
#define | MAX_SIZE 4096 |
Functions | |
static int | sol_probe (AVProbeData *p) |
static enum CodecID | sol_codec_id (int magic, int type) |
static int | sol_codec_type (int magic, int type) |
static int | sol_channels (int magic, int type) |
static int | sol_read_header (AVFormatContext *s, AVFormatParameters *ap) |
static int | sol_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_sol_demuxer |
#define SOL_16BIT 4 |
#define SOL_DPCM 1 |
Definition at line 46 of file sol.c.
Referenced by avcodec_register_all(), sol_codec_id(), and sol_codec_type().
#define SOL_STEREO 16 |
static int sol_channels | ( | int | magic, | |
int | type | |||
) | [static] |
static enum CodecID sol_codec_id | ( | int | magic, | |
int | type | |||
) | [static] |
static int sol_codec_type | ( | int | magic, | |
int | type | |||
) | [static] |
static int sol_probe | ( | AVProbeData * | p | ) | [static] |
static int sol_read_header | ( | AVFormatContext * | s, | |
AVFormatParameters * | ap | |||
) | [static] |
static int sol_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Initial value:
{ .name = "sol", .long_name = NULL_IF_CONFIG_SMALL("Sierra SOL format"), .read_probe = sol_probe, .read_header = sol_read_header, .read_packet = sol_read_packet, .read_seek = pcm_read_seek, }