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

Function ts_stream_kind

libhb/stream.c:400–412  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

398}
399
400static kind_t ts_stream_kind( hb_stream_t * stream, int idx )
401{
402 if ( stream->ts.list[idx].pes_list != -1 )
403 {
404 // Returns kind for the first pes substream in the pes list
405 // All substreams in a TS stream are the same kind.
406 return stream->pes.list[stream->ts.list[idx].pes_list].stream_kind;
407 }
408 else
409 {
410 return U;
411 }
412}
413
414static kind_t ts_stream_type( hb_stream_t * stream, int idx )
415{

Callers 6

ts_index_of_videoFunction · 0.85
prune_streamsFunction · 0.85
hb_ts_stream_initFunction · 0.85
update_ts_streamsFunction · 0.85
hb_ts_resolve_pid_typesFunction · 0.85
hb_ts_decode_pktFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected