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/mix.h

18 lines
349 B

#ifndef _MIX_H_
#define _MIX_H_
#include "types.h"
#include <libavutil/frame.h>
#define MIX_MAX_INPUTS 4
mix_t *mix_new(void);
void mix_destroy(mix_t *mix);
int mix_config(mix_t *, const format_t *format);
int mix_add(mix_t *mix, AVFrame *frame, unsigned int idx, void *, output_t *output);
unsigned int mix_get_index(mix_t *, void *);
#endif