FFmpeg
Classes | Typedefs | Variables
soxenc.c File Reference

SoX native format muxer. More...

#include "libavutil/intreadwrite.h"
#include "libavutil/intfloat.h"
#include "libavutil/dict.h"
#include "avformat.h"
#include "avio_internal.h"
#include "rawenc.h"
#include "sox.h"

Classes

struct  SoXContext
 

Typedefs

typedef struct SoXContext SoXContext
 

Variables

AVOutputFormat ff_sox_muxer
 

Detailed Description

SoX native format muxer.

Author
Daniel Verkamp
See also
http://wiki.multimedia.cx/index.php?title=SoX_native_intermediate_format

Variable Documentation

§ ff_sox_muxer

AVOutputFormat ff_sox_muxer
Initial value:
= {
.name = "sox",
.long_name = NULL_IF_CONFIG_SMALL("SoX native"),
.extensions = "sox",
.priv_data_size = sizeof(SoXContext),
.audio_codec = AV_CODEC_ID_PCM_S32LE,
.video_codec = AV_CODEC_ID_NONE,
.write_header = sox_write_header,
.write_packet = ff_raw_write_packet,
.write_trailer = sox_write_trailer,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition: avformat.h:469
Definition: soxenc.c:40