⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fixpsn.h

📁 Zoran V966 DVD 解码 Soc芯片的源程序
💻 H
字号:
/**********************************************************************************
 *  Copyright (c) 2002 ZORAN Corporation, All Rights Reserved
 *  THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
 *
 *  File: $Workfile: fixpsn.h $             
 *
 * Description:
 * ============
 * This module implements an efficient finite state machine for correcting noisy PSN values.
 * PSN values are sequential numbers 100,101,102,103 etc with "noise".
 * 
 * Log:
 * ====
 * $Revision: $
 * Last Modified by $Author: $ at $Modtime: $ 
 **********************************************************************************
 * Updates:
 **********************************************************************************
 * $Log: $
 * 
 * 
 *********************************************************************************/
#include "Config.h"		/* Global Configuration - do not remove! */


#ifndef FIXPSN_H
#define FIXPSN_H


/*** Include Files ***************************************************************/
#include "Include\sysdefs.h"
#include "Drive\Zfe\zfe.h"
#include "Drive\Zfe\Disc\Reader\rd_defs.h"


/*** Defines *********************************************************************/


/*** Typedefs ********************************************************************/
typedef enum 
{									  	  // psn ok ?  fwd fix ? 
    FIXPSN_UNKNOWN_FLAG			= 0x01,   //  no        no    
    FIXPSN_NO_SYNC_FLAG			= 0x02,   //  yes       no    
    FIXPSN_IN_SYNC_FLAG			= 0x04,   //  yes       no    
    FIXPSN_FWD_FIX_FLAG			= 0x08,   //  no        yes   
    FIXPSN_LOSE_SYNC_FLAG		= 0x10,   //  yes       no    
    FIXPSN_LOSE_N_FWD_FIX_FLAG  = 0x18,   //  yes       no    
    FIXPSN_RESYNC_FLAG			= 0x20    //  yes       no    
} FIXPSN_FIX_FLAGS_ET;


/*** Externs *********************************************************************/


/*** Public Funcions *************************************************************/
void				FIXPSN_ResetState(void);
FIXPSN_FIX_FLAGS_ET FIXPSN_UpdateState(RD_DEFS_STD_BLK_ST * blk_p);


#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -