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

14 lines
270 B

#ifndef _DECODER_H_
#define _DECODER_H_
#include "types.h"
#include "str.h"
decode_t *decoder_new(const char *payload_str, const char *format, int ptime);
int decoder_input(decode_t *, const str *, unsigned long ts, ssrc_t *);
void decoder_free(decode_t *);
#endif