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.
|
|
#ifndef _PACKET_H_
|
|
|
#define _PACKET_H_
|
|
|
|
|
|
#include "types.h"
|
|
|
#include <libavutil/frame.h>
|
|
|
|
|
|
void ssrc_close(ssrc_t *s);
|
|
|
void ssrc_free(void *p);
|
|
|
|
|
|
void packet_process(stream_t *, unsigned char *, unsigned len);
|
|
|
|
|
|
#endif
|