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

Function hb_get_work

libhb/work.c:187–201  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185}
186
187hb_work_object_t * hb_get_work( hb_handle_t *h, int id )
188{
189 hb_work_object_t * w;
190 for( w = hb_objects; w; w = w->next )
191 {
192 if( w->id == id )
193 {
194 hb_work_object_t *wc = malloc( sizeof(*w) );
195 *wc = *w;
196 wc->h = h;
197 return wc;
198 }
199 }
200 return NULL;
201}
202
203hb_work_object_t* hb_audio_decoder(hb_handle_t *h, int codec)
204{

Callers 10

muxInitFunction · 0.85
InitAudioFunction · 0.85
InitSubtitleFunction · 0.85
hb_audio_decoderFunction · 0.85
hb_video_decoderFunction · 0.85
hb_video_encoderFunction · 0.85
hb_subtitle_encoderFunction · 0.85
hb_audio_encoderFunction · 0.85
do_jobFunction · 0.85
DecodePreviewsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected