mirror of
https://github.com/Evolution-X-Devices/hardware_samsung_slsi-linaro_openmax
synced 2026-01-27 11:13:30 +00:00
Change-Id: I79380bc91acf57ca5f3e56fb64af76f4c45f6566 Signed-off-by: Sam Protsenko <joe.skb7@gmail.com>
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
/*
|
|
*
|
|
* Copyright 2012 Samsung Electronics S.LSI 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 _EXYNOS_VIDEO_DEC_H_
|
|
#define _EXYNOS_VIDEO_DEC_H_
|
|
|
|
#include "ExynosVideoApi.h"
|
|
|
|
#define VIDEO_DECODER_INBUF_SIZE (1920 * 1080 * 3 / 2)
|
|
#define VIDEO_DECODER_DEFAULT_INBUF_PLANES 1
|
|
#define VIDEO_DECODER_DEFAULT_OUTBUF_PLANES 2
|
|
#define VIDEO_DECODER_POLL_TIMEOUT 25
|
|
|
|
ExynosVideoErrorType MFC_Exynos_Video_GetInstInfo_Decoder(
|
|
ExynosVideoInstInfo *pVideoInstInfo);
|
|
|
|
int MFC_Exynos_Video_Register_Decoder(
|
|
ExynosVideoDecOps *pDecOps,
|
|
ExynosVideoDecBufferOps *pInbufOps,
|
|
ExynosVideoDecBufferOps *pOutbufOps);
|
|
|
|
#endif /* _EXYNOS_VIDEO_DEC_H_ */
|