#include "voc.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | voc_enc_context |
Typedefs | |
typedef struct voc_enc_context | VocEncContext |
Functions | |
static int | voc_write_header (AVFormatContext *s) |
static int | voc_write_packet (AVFormatContext *s, AVPacket *pkt) |
static int | voc_write_trailer (AVFormatContext *s) |
Variables | |
AVOutputFormat | ff_voc_muxer |
typedef struct voc_enc_context VocEncContext |
static int voc_write_header | ( | AVFormatContext * | s | ) | [static] |
static int voc_write_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
static int voc_write_trailer | ( | AVFormatContext * | s | ) | [static] |
Initial value:
{ .name = "voc", .long_name = NULL_IF_CONFIG_SMALL("Creative Voice file format"), .mime_type = "audio/x-voc", .extensions = "voc", .priv_data_size = sizeof(VocEncContext), .audio_codec = CODEC_ID_PCM_U8, .video_codec = CODEC_ID_NONE, .write_header = voc_write_header, .write_packet = voc_write_packet, .write_trailer = voc_write_trailer, .codec_tag=(const AVCodecTag* const []){ff_voc_codec_tags, 0}, }