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

21 lines
403 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 *filename);
void output_close(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