MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / have_ts_sync

Function have_ts_sync

libhb/stream.c:518–527  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

516}
517
518static 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
529static int hb_stream_check_for_ts(const uint8_t *buf)
530{

Callers 2

hb_stream_check_for_tsFunction · 0.70
align_to_next_packetFunction · 0.70

Calls 1

check_ts_syncFunction · 0.70

Tested by

no test coverage detected