| 516 | } |
| 517 | |
| 518 | static int have_ts_sync(const uint8_t *buf, int psize, int count) |
| 519 | { |
| 520 | int ii; |
| 521 | for ( ii = 0; ii < count; ii++ ) |
| 522 | { |
| 523 | if ( !check_ts_sync(&buf[ii*psize]) ) |
| 524 | return 0; |
| 525 | } |
| 526 | return 1; |
| 527 | } |
| 528 | |
| 529 | static int hb_stream_check_for_ts(const uint8_t *buf) |
| 530 | { |
no test coverage detected