StreamSharingConfig.java

/*
 * Copyright 2023 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.camera.core.streamsharing;

import android.os.Build;

import androidx.annotation.NonNull;
import androidx.annotation.RequiresApi;
import androidx.camera.core.impl.Config;
import androidx.camera.core.impl.ImageOutputConfig;
import androidx.camera.core.impl.MutableConfig;
import androidx.camera.core.impl.OptionsBundle;
import androidx.camera.core.impl.UseCaseConfig;
import androidx.camera.core.internal.ThreadConfig;

/**
 * Configuration for a {@link StreamSharing} use case.
 *
 * <p> This class is a thin wrapper of the underlying {@link OptionsBundle}. Instead of adding
 * getters and setters to this class, one should modify the config using
 * {@link MutableConfig#insertOption} and {@link MutableConfig#retrieveOption} directly.
 */
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
class StreamSharingConfig implements UseCaseConfig<StreamSharing>,
        ImageOutputConfig,
        ThreadConfig {

    private final OptionsBundle mConfig;

    /** Creates a new configuration instance. */
    StreamSharingConfig(@NonNull OptionsBundle config) {
        mConfig = config;
    }

    @NonNull
    @Override
    public Config getConfig() {
        return mConfig;
    }
}