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 343B

12345678910111213141516
  1. /*
  2. * Logger function header file
  3. * Copyright (C) 2010-2011 Unix Solutions Ltd.
  4. *
  5. * Released under MIT license.
  6. * See LICENSE-MIT.txt for license terms.
  7. */
  8. #ifndef LIBTS_LOG_H
  9. #define LIBTS_LOG_H
  10. __attribute__ ((format(printf, 1, 2)))
  11. void ts_LOGf(const char *fmt, ...);
  12. void ts_set_log_func(void (*LOG_func)(const char *msg));
  13. #endif