1 // Copyright 2019 The Android Open Source Project
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 #pragma once
15 
16 #include <stdint.h>
17 
18 // We need to keep this in sync with guest side code
19 // (device/generic/goldfish/codecs/goldfish_common/goldfish_media_utils.h).
20 // Probably should move this part into goldfish-opengl.
21 enum class MediaCodecType : uint8_t {
22     VP8Codec = 0,
23     VP9Codec = 1,
24     H264Codec = 2,
25     HevcCodec = 3,
26     Max = 4,
27 };
28 
29 enum class MediaOperation : uint8_t {
30     InitContext = 0,
31     DestroyContext = 1,
32     DecodeImage = 2,
33     GetImage = 3,
34     Flush = 4,
35     Reset = 5,
36     SendMetadata = 6,
37     Max = 7,
38 };
39 
40 struct MetadataParam {
41     // input
42     uint64_t type;
43     uint64_t primaries;
44     uint64_t range;
45     uint64_t transfer;
46 };
47