blob: 9bf4d1873ae40060e735bf1a0bfad088faa7a0b6 [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
22#if __cplusplus
23extern "C" {
24#endif
25
26/** Parses the platform effect xml configuration and stores its content in EffectFactoryState.
27 * @param[in] path of the configuration file or NULL to load the default one
28 * @return -1 on unrecoverable error (eg: no configuration file)
29 * 0 on success
30 * the number of invalid elements (lib & effect) skipped if the config is partially invalid
31 */
32ssize_t loadXmlEffectConfig(const char* path);
33
34#if __cplusplus
35} // extern "C"
36#endif
37
38#endif // ANDROID_EFFECTSXMLCONFIGLOADER_H