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

Function hb_container_get_from_format

libhb/common.c:3584–3596  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3582}
3583
3584hb_container_t* hb_container_get_from_format(int format)
3585{
3586 int i;
3587 for (i = 0; i < hb_containers_count; i++)
3588 {
3589 if (hb_containers[i].item.format == format)
3590 {
3591 return &hb_containers[i].item;
3592 }
3593 }
3594
3595 return NULL;
3596}
3597
3598int hb_container_get_from_name(const char *name)
3599{

Callers 3

get_job_muxFunction · 0.85
hb_preset_apply_muxFunction · 0.85
CheckOptionsFunction · 0.85

Calls

no outgoing calls

Tested by 1

CheckOptionsFunction · 0.68