#include "libavutil/intreadwrite.h"
#include "libavutil/intfloat.h"
#include "libavutil/dict.h"
#include "avformat.h"
#include "avio_internal.h"
#include "sox.h"
Go to the source code of this file.
Data Structures | |
struct | SoXContext |
Functions | |
static int | sox_write_header (AVFormatContext *s) |
static int | sox_write_packet (AVFormatContext *s, AVPacket *pkt) |
static int | sox_write_trailer (AVFormatContext *s) |
Variables | |
AVOutputFormat | ff_sox_muxer |
Definition in file soxenc.c.
static int sox_write_header | ( | AVFormatContext * | s | ) | [static] |
static int sox_write_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
static int sox_write_trailer | ( | AVFormatContext * | s | ) | [static] |
Initial value:
{ .name = "sox", .long_name = NULL_IF_CONFIG_SMALL("SoX native format"), .extensions = "sox", .priv_data_size = sizeof(SoXContext), .audio_codec = CODEC_ID_PCM_S32LE, .video_codec = CODEC_ID_NONE, .write_header = sox_write_header, .write_packet = sox_write_packet, .write_trailer = sox_write_trailer, }