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.
rtpengine/recording-daemon/output.h

22 lines
517 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(const char *path, const char *call, const char *type, const char *label);
output_t *output_new_from_full_path(const char *path, char *name);
void output_close(metafile_t *, output_t *);
int output_config(output_t *output, const format_t *requested_format, format_t *actual_format);
int output_add(output_t *output, AVFrame *frame);
#endif