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

Function ts_index_of_video

libhb/stream.c:439–448  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

437}
438
439static int ts_index_of_video(hb_stream_t *stream)
440{
441 int i;
442
443 for ( i = 0; i < stream->ts.count; ++i )
444 if ( V == ts_stream_kind( stream, i ) )
445 return i;
446
447 return -1;
448}
449
450static void ts_err( hb_stream_t *stream, int curstream, char *log, ... )
451{

Callers 3

hb_sample_ptsFunction · 0.85
hb_ts_stream_find_pidsFunction · 0.85
hb_ts_decode_pktFunction · 0.85

Calls 1

ts_stream_kindFunction · 0.85

Tested by

no test coverage detected