| 331 | static void ts_err( hb_stream_t*, int, char*, ... ) HB_WPRINTF(3,4); |
| 332 | |
| 333 | static void ts_warn( hb_stream_t *stream, char *log, ... ) |
| 334 | { |
| 335 | va_list args; |
| 336 | va_start( args, log ); |
| 337 | ts_warn_helper( stream, log, args ); |
| 338 | va_end( args ); |
| 339 | } |
| 340 | |
| 341 | static int get_id(hb_pes_stream_t *pes) |
| 342 | { |
no test coverage detected