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

Function flush_frames

libhb/vfr.c:354–365  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

352}
353
354static hb_buffer_t * flush_frames(hb_filter_private_t * pv)
355{
356 hb_buffer_list_t list;
357
358 hb_buffer_list_clear(&list);
359 while (hb_list_count(pv->frame_rate_list) > 0)
360 {
361 hb_buffer_list_append(&list, adjust_frame_rate(pv, NULL));
362 }
363
364 return hb_buffer_list_clear(&list);
365}
366
367static int hb_vfr_init(hb_filter_object_t *filter, hb_filter_init_t *init)
368{

Callers 1

hb_vfr_workFunction · 0.85

Calls 4

hb_buffer_list_clearFunction · 0.85
hb_list_countFunction · 0.85
hb_buffer_list_appendFunction · 0.85
adjust_frame_rateFunction · 0.85

Tested by

no test coverage detected