image_sse2.cpp
来自「H.263的编码程序,加了CPU指令优化,VC版.」· C++ 代码 · 共 24 行
CPP
24 行
#include <stdio.h>
#include "HEnc.h"
#include "image.h"
void Hfilter_sse2(unsigned char *rec, int width, int height, int lx, int chr,
int coded_tab[MBR+1][MBC+1], int quant_tab[MBR+1][MBC+1])
{
Hfilter_c(rec, width, height, lx, chr, coded_tab, quant_tab);
return;
}
void Vfilter_sse2(unsigned char *rec, int width, int height, int lx, int chr,
int coded_tab[MBR+1][MBC+1], int quant_tab[MBR+1][MBC+1])
{
Vfilter_c(rec, width, height, lx, chr, coded_tab, quant_tab);
return;
}
void MakeEdge_sse2(unsigned char *pic, int width, int height, int edge)
{
MakeEdge_c(pic, width, height, edge);
return;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?