| 261 | } |
| 262 | |
| 263 | static gboolean |
| 264 | preset_is_default (hb_preset_index_t *path) |
| 265 | { |
| 266 | GhbValue *dict; |
| 267 | gboolean def = FALSE; |
| 268 | |
| 269 | dict = hb_preset_get(path); |
| 270 | if (dict) |
| 271 | { |
| 272 | def = ghb_dict_get_bool(dict, "Default"); |
| 273 | } |
| 274 | return def; |
| 275 | } |
| 276 | |
| 277 | void |
| 278 | ghb_preset_to_settings(GhbValue *settings, GhbValue *preset) |
no test coverage detected