_csl_osdsetbitmapmode.c

来自「TI达芬奇dm644x各硬件模块测试代码」· C语言 代码 · 共 33 行

C
33
字号
/** @file _csl_osdSetBitmapMode.c
 *
 *  @brief Set OSD bitmap window mode parameters
 *  This routine set parameters which will affect both OSD bitmap windows
 *
 *  @date 5th OCT, 2004
 *  @author Sandeep Tiwari.
 */

#include <csl_osd.h>
#include <_csl_osd_aux.h>

CSL_Status   _CSL_osdSetBitmapMode(
         /** Pointer to the object that holds reference to the
           *  instance of OSD requested after the call 
	    */
         CSL_OsdHandle hOsd,

         /** Pointer to structure containing data to set the OSD bitmap mode 
           *  registers 
           */   
         CSL_OsdBitmapModeData *arg ) 
{
	CSL_Status status = CSL_SOK;
	
      CSL_FINS(hOsd->regs->MODE,OSD_MODE_OVRSZ,arg->vertexpand);    
      CSL_FINS(hOsd->regs->MODE,OSD_MODE_OHRSZ,arg->horzexpand);

      return status;

}

⌨️ 快捷键说明

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