#include "libavutil/intreadwrite.h"
#include "libavutil/intfloat.h"
#include "libavutil/dict.h"
#include "avformat.h"
#include "internal.h"
#include "pcm.h"
#include "sox.h"
Go to the source code of this file.
Defines | |
#define | SOX_SAMPLES 1024 |
Functions | |
static int | sox_probe (AVProbeData *p) |
static int | sox_read_header (AVFormatContext *s) |
static int | sox_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_sox_demuxer |
Definition in file soxdec.c.
#define SOX_SAMPLES 1024 |
static int sox_probe | ( | AVProbeData * | p | ) | [static] |
static int sox_read_header | ( | AVFormatContext * | s | ) | [static] |
static int sox_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Initial value:
{ .name = "sox", .long_name = NULL_IF_CONFIG_SMALL("SoX native format"), .read_probe = sox_probe, .read_header = sox_read_header, .read_packet = sox_read_packet, .read_seek = ff_pcm_read_seek, }