/* * Copyright (c) 2021 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef STUB_MSGPROC_H #define STUB_MSGPROC_H #include #include "codec_type.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ int32_t CodecSerPackCapability(struct HdfSBuf *reply, CodecCapability *cap); int32_t CodecSerParseParam(struct HdfSBuf *data, Param *param); int32_t CodecSerPackParam(struct HdfSBuf *reply, Param *param); int32_t CodecSerParseCodecBuffer(struct HdfSBuf *data, CodecBuffer *codecBuffer); int32_t CodecSerPackCodecBuffer(struct HdfSBuf *reply, const CodecBuffer *codecBuffer); int32_t CodecSerParseFenceFd(struct HdfSBuf *data, int32_t *fenceFd); int32_t CodecSerPackFenceFd(struct HdfSBuf *reply, int32_t fenceFd); #ifdef __cplusplus } #endif /* __cplusplus */ #endif // STUB_MSGPROC_H