blob: a3fe9a3448add74e440d4abc49a2711bc814484e [file] [log] [blame]
Kevin Rocard8f5520a2017-06-26 12:10:47 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_EFFECTSXMLCONFIGLOADER_H
18#define ANDROID_EFFECTSXMLCONFIGLOADER_H
19
20#include <unistd.h>
21
Kevin Rocard41af42b2017-06-23 12:10:07 -070022#include <cutils/compiler.h>
23
24#include "EffectsFactoryState.h"
25
Kevin Rocard8f5520a2017-06-26 12:10:47 -070026#if __cplusplus
27extern "C" {
28#endif
29
30/** Parses the platform effect xml configuration and stores its content in EffectFactoryState.
31 * @param[in] path of the configuration file or NULL to load the default one
32 * @return -1 on unrecoverable error (eg: no configuration file)
33 * 0 on success
34 * the number of invalid elements (lib & effect) skipped if the config is partially invalid
Kevin Rocard41af42b2017-06-23 12:10:07 -070035 * @note this function is exported for test purpose only. Do not call from outside this library.
Kevin Rocard8f5520a2017-06-26 12:10:47 -070036 */
Kevin Rocard41af42b2017-06-23 12:10:07 -070037ANDROID_API
38ssize_t EffectLoadXmlEffectConfig(const char* path);
Kevin Rocard8f5520a2017-06-26 12:10:47 -070039
40#if __cplusplus
41} // extern "C"
42#endif
43
44#endif // ANDROID_EFFECTSXMLCONFIGLOADER_H