You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
512 B

#ifndef _OUTPUT_H_
#define _OUTPUT_H_
#include "types.h"
#include <libavutil/frame.h>
extern int mp3_bitrate;
void output_init(const char *format);
output_t *output_new_ext(metafile_t *, const char *type, const char *kind, const char *label);
void output_close(metafile_t *, output_t *, tag_t *, bool discard);
content_t *output_get_content(output_t *);
void output_content_failure(content_t *);
void sink_init(sink_t *);
void sink_close(sink_t *sink);
bool sink_add(sink_t *, AVFrame *frame);
#endif