📄 xvid_section_def.h
字号:
/*****************************************************************************
*
* XVID MPEG-4 VIDEO DECODER ON LSI ZSP400
*
* Author:
* Jian Huan <jh@rock-chips.com>
*
* Date:
* 2005-06-15
****************************************************************************/
#ifndef _XVID_SECTION_DEF_H_
#define _XVID_SECTION_DEF_H_
/******************************************************************
Global Variable located in Bss
******************************************************************/
#define MP4_GLOBAL_VARIABLE_SECTION __attribute__((section(".avi_v_bss, \"aw\"")))
/******************************************************************
C prototype located in I-RAM section
******************************************************************/
#define MP4_C_PROTOTYPE_SECTION __attribute__((section(".avi_v_text, \"ax\"")))
/******************************************************************
Assemble located in I-RAM
******************************************************************/
#define MP4_ASSEMBLE_SECTION .section ".avi_v_text", "ax"
/******************************************************************
Data Table located in D-RAM
******************************************************************/
#define MP4_DATA_SECTION .section ".avi_v_data", "aw" //modified by hjl "ax"--->"aw"
/******************************************************************
Array located in D-RAM
******************************************************************/
#define MP4_ARRAY_SECTION .section ".avi_v_data", "aw"
/******************************************************************
Array located in D-RAM
******************************************************************/
#define MP4_C_ARRAY_SECTION __attribute__((section(".avi_v_data, \"aw\"")))
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -