123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /*------------------------------------------------------------------------------
- -- --
- -- 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. --
- -- --
- --------------------------------------------------------------------------------
- --
- -- Description : Debug Trace funtions
- --
- ------------------------------------------------------------------------------
- --
- -- Version control information, please leave untouched.
- --
- -- $RCSfile: jpegasicdbgtrace.h,v $
- -- $Revision: 1.1 $
- -- $Date: 2007/03/30 05:45:21 $
- --
- ------------------------------------------------------------------------------*/
- #ifndef __JPEGDEC_TRACE__
- #define __JPEGDEC_TRACE__
- #include <stdio.h>
- #include "basetype.h"
- #include "jpegdeccontainer.h"
- void PrintJPEGReg(u32 * regBase);
- void ppRegDump(const u32 * regBase);
- void DumpJPEGCtrlReg(u32 * regBase, FILE *fd);
- void HexDumpJPEGCtrlReg(u32 * regBase, FILE *fd);
- void HexDumpJPEGTables(u32 * regBase, JpegDecContainer *pJpegDecCont, FILE *fd);
- void HexDumpJPEGOutput(JpegDecContainer *pJpegDecCont, FILE *fd);
- void HexDumpRegs(u32 * regBase, FILE *fd);
- void ResetAsicBuffers(JpegDecContainer *pJpegDecCont, FILE *fd);
- #endif /* __JPEGDEC_TRACE__ */
|