* 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. *********************************************************************/
| 5703 | * @param title to apply. |
| 5704 | *********************************************************************/ |
| 5705 | void 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 |
nothing calls this directly
no test coverage detected