File: packet.h

package info (click to toggle)
rtpengine 13.5.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,676 kB
  • sloc: ansic: 86,775; perl: 59,422; python: 3,193; sh: 1,037; makefile: 687; asm: 211
file content (12 lines) | stat: -rw-r--r-- 214 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#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