libtsfuncs is a library for mpeg PSI parsing and generation. https://georgi.unixsol.org/programs/libtsfuncs/
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.

log.h 182B

123456789
  1. #ifndef LIBTS_LOG_H
  2. #define LIBTS_LOG_H
  3. __attribute__ ((format(printf, 1, 2)))
  4. void ts_LOGf(const char *fmt, ...);
  5. void ts_set_log_func(void (*LOG_func)(const char *msg));
  6. #endif