• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2020 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef ANDROID_V4L2_CODEC2_V4L2_V4L2_COMPONENT_STORE_H
6 #define ANDROID_V4L2_CODEC2_V4L2_V4L2_COMPONENT_STORE_H
7 
8 #include <C2Component.h>
9 
10 namespace android {
11 
12 struct V4L2ComponentStore {
13     static std::shared_ptr<C2ComponentStore> Create();
14 };
15 
16 }  // namespace android
17 
18 #endif  // ANDROID_V4L2_CODEC2_V4L2_V4L2_COMPONENT_STORE_H
19