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

Function hb_x264_api_get

libhb/encx264.c:255–268  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

253}
254
255const x264_api_t * hb_x264_api_get(int bit_depth)
256{
257 int ii;
258
259 for (ii = 0; ii < HB_X264_API_COUNT; ii++)
260 {
261 if (-1 != x264_apis[ii].bit_depth &&
262 bit_depth == x264_apis[ii].bit_depth)
263 {
264 return &x264_apis[ii];
265 }
266 }
267 return NULL;
268}
269
270#if 0
271/*

Callers 3

encx264InitFunction · 0.85
hb_x264_param_unparseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected