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.

22 lines
367B

  1. #ifndef _rtp_dump_h_
  2. #define _rtp_dump_h_
  3. #include <stdint.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. struct rtpdump_t;
  8. struct rtpdump_t* rtpdump_open(const char* file, int flags);
  9. int rtpdump_close(struct rtpdump_t* dump);
  10. int rtpdump_read(struct rtpdump_t* dump, uint32_t* clock, void* data, int bytes);
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif /* !_rtp_dump_h_ */