Files
MXC_A59/lib/hx170dec/include/h264_pp_pipeline.h

44 lines
2.0 KiB
C

/*------------------------------------------------------------------------------
-- --
-- This software is confidential and proprietary and may be used --
-- only as expressly authorized by a licensing agreement from --
-- --
-- Hantro Products Oy. --
-- --
-- (C) COPYRIGHT 2006 HANTRO PRODUCTS OY --
-- ALL RIGHTS RESERVED --
-- --
-- The entire notice above must be reproduced --
-- on all copies and should not be removed. --
-- --
--------------------------------------------------------------------------------
--
-- Abstract : H264 decoder and PP pipeline support
--
--------------------------------------------------------------------------------
--
-- Version control information, please leave untouched.
--
-- $RCSfile: h264_pp_pipeline.h,v $
-- $Date: 2010/07/23 09:51:27 $
-- $Revision: 1.6 $
--
------------------------------------------------------------------------------*/
#ifndef H264_PP_PIPELINE_H
#define H264_PP_PIPELINE_H
#include "decppif.h"
i32 h264RegisterPP(const void *decInst, const void *ppInst,
void (*PPDecStart) (const void *, const DecPpInterface *),
void (*PPDecWaitEnd) (const void *),
void (*PPConfigQuery) (const void *, DecPpQuery *),
void (*PPDisplayIndex) (const void *, u32));
i32 h264UnregisterPP(const void *decInst, const void *ppInst);
u32 h264UseDisplaySmoothing(const void *decInst);
#endif /* #ifdef H264_PP_PIPELINE_H */