deinterlacing.h

来自「经典的MP4编解码核心库」· C头文件 代码 · 共 18 行

H
18
字号
#ifndef _DEINTERLACING_H_
#define _DEINTERLACING_H_

#include "../common/common.h"

typedef int (DETECT_DEINTERLACING)(uint8_t *const odd, 
									const uint32_t stride);

typedef DETECT_DEINTERLACING * DETECT_DEINTERLACING_PTR;	

extern DETECT_DEINTERLACING_PTR detect_deinterlacing8;

DETECT_DEINTERLACING detect_deinterlacing8_c;
DETECT_DEINTERLACING detect_deinterlacing8_mmx;
DETECT_DEINTERLACING detect_deinterlacing8_xmm;

void deinterlacing8_c(uint8_t *odd, const uint32_t stride);
#endif

⌨️ 快捷键说明

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