| 448 | } |
| 449 | |
| 450 | static void ts_err( hb_stream_t *stream, int curstream, char *log, ... ) |
| 451 | { |
| 452 | va_list args; |
| 453 | va_start( args, log ); |
| 454 | ts_warn_helper( stream, log, args ); |
| 455 | va_end( args ); |
| 456 | |
| 457 | if (curstream >= 0) |
| 458 | { |
| 459 | stream->ts.list[curstream].skipbad = 1; |
| 460 | stream->ts.list[curstream].continuity = -1; |
| 461 | } |
| 462 | } |
| 463 | |
| 464 | static int check_ps_sync(const uint8_t *buf) |
| 465 | { |
no test coverage detected