int _load_ini(mediaeditor_s *editor)
{
- LOG_DEBUG("Enter [%p]", editor);
mediaeditor_ini_s *ini = NULL;
RET_VAL_IF(editor == NULL, MEDIAEDITOR_ERROR_INVALID_PARAMETER, "editor is NULL");
void _unload_ini(mediaeditor_s *editor)
{
- LOG_DEBUG("Enter [%p]", editor);
-
RET_IF(editor == NULL, "editor is NULL");
RET_IF(editor->ini.dict == NULL, "ini.dict is NULL");
editor->ini.general.gst_args = NULL;
iniparser_freedict(editor->ini.dict);
- LOG_DEBUG("ini instance[%p] is freed", editor->ini.dict);
editor->ini.dict = NULL;
}