基于视频压缩的实时监控系统-A4:main.c代码解析

#include <main.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/epoll.h>
#include <sys/stat.h>
#include <stdbool.h>

//为epoll_event 结构体附加一个结构体
struct event_ext
{
	int fd;
	bool epolled;
	uint32_t events;
	void (*handler) (int fd,void *arg);
	void *arg;
};

/*
*函数功能:创建一个事件附加结构
*/
struct event_ext *epoll_event_creat(int fd,uint32_t type,void (*handler)(int,void*),void *arg)
{
	struct event_ext *e;
	e = calloc(1,sizeof(struct event_ext));    //为结构体分配空间

	e->fd = fd;                               //初始化结构体
	e->events = type;
	e->handler = handler;
	e->arg = arg;
	return e;
}

/*
*函数功能:添加事件到epoll
*/
int epoll_add_event(int epfd,struct event_ext *ev)
{
	struct epoll_event epv;
	int op;

	//初始化epoll_event,并将附加结构挂载在epoll_event 
	epv.data.ptr = ev;
	epv.events = ev->events;
	if(ev->epolled)            //true    修改事件
		{
			op = EPOLL_CTL_MOD;
		}
	else                      //false   添加事件
       {		
	   		op = EPOLL_CTL_ADD;    
	   		ev->epolled = true;
	   }	
	//将epoll_event 加入 epoll池
	epoll_ctl(epfd,op,ev->fd,&epv);
}

/*
*函数功能:从epoll删除事件
*/
int epoll_del_event(int epfd,struct event_ext *ev)
{
	epoll_ctl(epfd,EPOLL_CTL_DEL,ev->fd,NULL);
	ev->epolled = false;
	return 0;
}
int main()
{
	int fds;
	int i;
	struct epoll_event events[512];
	uint32_t event;
	struct event_ext *e;
	//分配空间
	srv_main = calloc(1,sizeof(struct server));
	//创建epoll
	srv_main->epfd = epoll_create(512);
	//加入事件
	srv_main->cam = cam_sys_init();
    srv_main->srv = net_sys_init();
	//等待事件发生且处理
	while(1)
	{
		fds = epoll_wait(srv_main->epfd,events,512,1000);    //等待1000ms
		for(i=0;i<fds;i++)
		{
			event = events[i].events;
			e =  events[i].data.ptr;
			if(event & EPOLLIN)
			{
				e->handler(e->fd,e->arg);

			}
			if(event & EPOLLOUT)
			{
				e->handler(e->fd,e->arg);

			}
			if(event & EPOLLERR)
			{
				e->handler(e->fd,e->arg);

			}

		}

	}
	return -1;
}

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
mpeg4编码库源代码,C++完整源代码,有需要饿同学尽管拿去。 // This is the header file describing // the entrance function of the encoder core // or the encore ... #ifdef __cplusplus extern "C" { #endif typedef struct _ENC_PARAM_ { int x_dim; // the x dimension of the frames to be encoded int y_dim; // the y dimension of the frames to be encoded float framerate;// the frame rate of the sequence to be encoded long bitrate; // the bitrate of the target encoded stream long rc_period; // the intended rate control averaging period long rc_reaction_period; // the reation period for rate control long rc_reaction_ratio; // the ratio for down/up rate control long max_key_interval; // the maximum interval between key frames int max_quantizer; // the upper limit of the quantizer int min_quantizer; // the lower limit of the quantizer int search_range; // the forward search range for motion estimation } ENC_PARAM; typedef struct _ENC_FRAME_ { void *image; // the image frame to be encoded void *bitstream;// the buffer for encoded bitstream long length; // the length of the encoded bitstream } ENC_FRAME; typedef struct _ENC_RESULT_ { int isKeyFrame; // the current frame is encoded as a key frame } ENC_RESULT; // the prototype of the encore() - main encode engine entrance int encore( unsigned long handle, // handle - the handle of the calling entity, must be unique unsigned long enc_opt, // enc_opt - the option for encoding, see below void *param1, // param1 - the parameter 1 (its actually meaning depends on enc_opt void *param2); // param2 - the parameter 2 (its actually meaning depends on enc_opt // encore options (the enc_opt parameter of encore()) #define ENC_OPT_WRITE 1024 // write the reconstruct image to files (for debuging) #define ENC_OPT_INIT 32768 // initialize the encoder for an handle #define ENC_OPT_RELEASE 65536 // release all the resource associated with the handle // return code of encore() #define ENC_OK 0 #define ENC_MEMORY 1 #define ENC_BA
1363157985066 13726230503 00-FD-07-A4-72-B8:CMCC 120.196.100.82 i02.c.aliimg.com 24 27 2481 24681 200 1363157995052 13826544101 5C-0E-8B-C7-F1-E0:CMCC 120.197.40.4 4 0 264 0 200 1363157991076 13926435656 20-10-7A-28-CC-0A:CMCC 120.196.100.99 2 4 132 1512 200 1363154400022 13926251106 5C-0E-8B-8B-B1-50:CMCC 120.197.40.4 4 0 240 0 200 1363157993044 18211575961 94-71-AC-CD-E6-18:CMCC-EASY 120.196.100.99 iface.qiyi.com 视频网站 15 12 1527 2106 200 1363157995074 84138413 5C-0E-8B-8C-E8-20:7DaysInn 120.197.40.4 122.72.52.12 20 16 4116 1432 200 1363157993055 13560439658 C4-17-FE-BA-DE-D9:CMCC 120.196.100.99 18 15 1116 954 200 1363157995033 15920133257 5C-0E-8B-C7-BA-20:CMCC 120.197.40.4 sug.so.360.cn 信息安全 20 20 3156 2936 200 1363157983019 13719199419 68-A1-B7-03-07-B1:CMCC-EASY 120.196.100.82 4 0 240 0 200 1363157984041 13660577991 5C-0E-8B-92-5C-20:CMCC-EASY 120.197.40.4 s19.cnzz.com 站点统计 24 9 6960 690 200 1363157973098 15013685858 5C-0E-8B-C7-F7-90:CMCC 120.197.40.4 rank.ie.sogou.com 搜索引擎 28 27 3659 3538 200 1363157986029 15989002119 E8-99-C4-4E-93-E0:CMCC-EASY 120.196.100.99 www.umeng.com 站点统计 3 3 1938 180 200 1363157992093 13560439658 C4-17-FE-BA-DE-D9:CMCC 120.196.100.99 15 9 918 4938 200 1363157986041 13480253104 5C-0E-8B-C7-FC-80:CMCC-EASY 120.197.40.4 3 3 180 180 200 1363157984040 13602846565 5C-0E-8B-8B-B6-00:CMCC 120.197.40.4 2052.flash2-http.qq.com 综合门户 15 12 1938 2910 200 1363157995093 13922314466 00-FD-07-A2-EC-BA:CMCC 120.196.100.82 img.qfc.cn 12 12 3008 3720 200 1363157982040 13502468823 5C-0A-5B-6A-0B-D4:CMCC-EASY 120.196.100.99 y0.ifengimg.com 综合门户 57 102 7335 110349 200 1363157986072 18320173382 84-25-DB-4F-10-1A:CMCC-EASY 120.196.100.99
06-09
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值