/* titledict.c * * Copyright (C) 2008-2025 John Stebbins * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * SPDX-License-Identifier: GPL-2.0-only */ #include "titledict.h" GhbValue *ghb_get_title_settings(GhbValue *settings) { GhbValue *title; title = ghb_dict_get(settings, "Title"); return title; } GhbValue *ghb_get_title_audio_list(GhbValue *settings) { GhbValue *title_dict = ghb_get_title_settings(settings); GhbValue *audio_list = ghb_dict_get(title_dict, "AudioList"); return audio_list; } GhbValue *ghb_get_title_audio_track(GhbValue *settings, int track) { GhbValue *audio_list = ghb_get_title_audio_list(settings); GhbValue *audio_track = ghb_array_get(audio_list, track); return audio_track; } GhbValue *ghb_get_title_subtitle_list(GhbValue *settings) { GhbValue *title_dict = ghb_get_title_settings(settings); GhbValue *subtitle_list = ghb_dict_get(title_dict, "SubtitleList"); return subtitle_list; } GhbValue *ghb_get_title_subtitle_track(GhbValue *settings, int track) { GhbValue *subtitle_list = ghb_get_title_subtitle_list(settings); GhbValue *subtitle_track = ghb_array_get(subtitle_list, track); return subtitle_track; }