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

Function hb_chapter_set_title_by_index

libhb/common.c:5705–5709  ·  view source on GitHub ↗

* hb_chapter_set_title_by_index ********************************************************************** * Applies information from the given job to the official job instance. * @param job Handle to hb_job_t. * @param chapter The chapter to apply the name to (1-based). * @param title to apply. *********************************************************************/

Source from the content-addressed store, hash-verified

5703 * @param title to apply.
5704 *********************************************************************/
5705void hb_chapter_set_title_by_index( hb_job_t * job, int chapter_index, const char * title )
5706{
5707 hb_chapter_t * chapter = hb_list_item( job->list_chapter, chapter_index - 1 );
5708 hb_chapter_set_title( chapter, title );
5709}
5710
5711/**********************************************************************
5712 * hb_audio_copy

Callers

nothing calls this directly

Calls 2

hb_list_itemFunction · 0.85
hb_chapter_set_titleFunction · 0.85

Tested by

no test coverage detected