• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2018 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_CODEC2_V4L2_SUPPORT_H
6 #define ANDROID_CODEC2_V4L2_SUPPORT_H
7 
8 #include <C2Component.h>
9 
10 #include <memory>
11 
12 namespace android {
13 
14 /**
15  * Returns the C2VDA component store.
16  * \retval nullptr if the platform component store could not be obtained
17  */
18 std::shared_ptr<C2ComponentStore> GetCodec2VDAComponentStore();
19 }  // namespace android
20 
21 #endif  // ANDROID_CODEC2_V4L2_SUPPORT_H
22