diff --git a/video/config/BUILD.gn b/video/config/BUILD.gn index 7902c0b9a6..be76be9b11 100644 --- a/video/config/BUILD.gn +++ b/video/config/BUILD.gn @@ -66,3 +66,8 @@ if (rtc_include_tests) { } } } + +rtc_library("encoder_config") { + sources = [ "video_encoder_config.h" ] + deps = [ "../../api/video_codecs:video_codecs_api" ] +} diff --git a/video/config/video_encoder_config.h b/video/config/video_encoder_config.h new file mode 100644 index 0000000000..d33dec1da7 --- /dev/null +++ b/video/config/video_encoder_config.h @@ -0,0 +1,16 @@ +/* + * Copyright (c) 2022 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. An additional intellectual property rights grant can be found + * in the file PATENTS. All contributing project authors may + * be found in the AUTHORS file in the root of the source tree. + */ + +#ifndef VIDEO_CONFIG_VIDEO_ENCODER_CONFIG_H_ +#define VIDEO_CONFIG_VIDEO_ENCODER_CONFIG_H_ + +#include "api/video_codecs/video_encoder_config.h" + +#endif // VIDEO_CONFIG_VIDEO_ENCODER_CONFIG_H_