mpeg_6ch_overlay.c

来自「Zoran V966 DVD 解码 Soc芯片的源程序」· C语言 代码 · 共 34 行

C
34
字号
#include "Include\sysdefs.h"

#ifndef MODEL_2_CHANNEL
#ifdef D_VGA_6CH_ENABLE
#include "mpeg_6ch_vga_overlay.c"
#else
#include "mpeg_6ch_overlay.c"
#endif
#else
#ifdef D_VGA_6CH_ENABLE
CONST UINT16 
mpeg_6ch_vga_overlay_microcode_version = 0x0002;

CONST UINT16
mpeg_6ch_vga_overlay_microcode_features = 0x002D;

CONST UINT8 
mpeg_6ch_vga_overlay_microcode[] = {
0x0
};
#else
CONST UINT16 
mpeg_6ch_overlay_microcode_version = 0x0002;

CONST UINT16
mpeg_6ch_overlay_microcode_features = 0x0000;

CONST UINT8 
mpeg_6ch_overlay_microcode[] = {
0x0
};
#endif
#endif

⌨️ 快捷键说明

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