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 Max = 3, 26 }; 27 28 enum class MediaOperation : uint8_t { 29 InitContext = 0, 30 DestroyContext = 1, 31 DecodeImage = 2, 32 GetImage = 3, 33 Flush = 4, 34 Reset = 5, 35 Max = 6, 36 }; 37