⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recon.h

📁 这个程序有PC的服务端和Pocket PC上的客户端两个部分。服务端运行时
💻 H
字号:
////////////////////////////////////////////////////////////////////////////
//
//
//    Project     : VideoNet version 1.1.
//    Description : Peer to Peer Video Conferencing over the LAN.
//	  Author      :	Nagareshwar Y Talekar ( nsry2002@yahoo.co.in)
//    Date        : 15-6-2004.
//
//    This is the modified version of tmndecode (H.263 decoder) 
//    written by Karl & Robert.It was in ANSI C. I have converted into C++
//    so that it can be integrated into any windows application. I have 
//    removed some of the files which had display and file storing 
//    functions.I have removed the unnecessary code and also added some
//    new files..
//	  Original library dealt with files. Input & Output , both were files.
//    I have done some major changes so that it can be used for real time 
//    decoding process. Now one can use this library for decoding H263 frames. 
//
//
//    File description : 
//    Name    : recon.h
//
/////////////////////////////////////////////////////////////////////////////



#if !defined(AFX_RECON_H__C5DE7F2C_6033_11D6_889B_000B2B0F84B6__INCLUDED_)
#define AFX_RECON_H__C5DE7F2C_6033_11D6_889B_000B2B0F84B6__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "DGlobal.h"

/* private prototypes */
static void recon_comp (unsigned char *src, unsigned char *dst,int lx, int lx2, int w, int h, int x, int y, int dx, int dy, int flag);
static void recon_comp_obmc (unsigned char *src, unsigned char *dst,int lx,int lx2,int comp,int w,int h,int x,int y);
static void rec (unsigned char *s, unsigned char *d, int lx, int lx2, int h);
static void recc (unsigned char *s, unsigned char *d, int lx, int lx2, int h);
static void reco (unsigned char *s, int *d, int lx, int lx2, int addflag,int c, int xa, int xb, int ya, int yb);
static void rech (unsigned char *s, unsigned char *d, int lx, int lx2, int h);
static void rechc (unsigned char *s, unsigned char *d, int lx, int lx2, int h);
static void recho (unsigned char *s, int *d, int lx, int lx2, int addflag,int c, int xa, int xb, int ya, int yb);
static void recv (unsigned char *s, unsigned char *d, int lx, int lx2, int h);
static void recvc (unsigned char *s, unsigned char *d, int lx, int lx2, int h);
static void recvo (unsigned char *s, int *d, int lx, int lx2, int addflag,int c, int xa, int xb, int ya, int yb);
static void rec4 (unsigned char *s, unsigned char *d, int lx, int lx2, int h);
static void rec4c (unsigned char *s, unsigned char *d, int lx, int lx2, int h);
static void rec4o (unsigned char *s, int *d, int lx, int lx2, int addflag,int c, int xa, int xb, int ya, int yb);


#endif // !defined(AFX_RECON_H__C5DE7F2C_6033_11D6_889B_000B2B0F84B6__INCLUDED_)

⌨️ 快捷键说明

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