摘要: 1 // avi文件固定大小:1MB = 1048576 Bytes 2 // 不足的部分置空,最后一帧超过的放弃,并关闭文件。 3 // 声道只有一个,如果编码速度来得及,就用aac,否则就用pcm。 4 5 #include "stdafx.h" 6 #include <stdlib.h> 7 阅读全文
posted @ 2020-09-19 09:16 joyce3800 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 在linux下有个工具叫做strip,这是一个可以将linux下的可执行文件的符号表去除,减少每个可执行文件的大小,这对于嵌入式方面很有必要。但是没有了符号表也就意味着没有办法采用gdb进行调试,因为gdb调试是读取ELF文件头来获取符号表,进而调试,但strip之后,可执行文件的ELF文件头就没有 阅读全文
posted @ 2020-09-02 21:31 joyce3800 阅读(1271) 评论(0) 推荐(0) 编辑
摘要: 为了解决多个应用进程的日志融合输出的问题,设计了如下的方案。 1 /************************************************************************/ 2 /* SharedLogging.h 多进程共享日志模块 */ 3 /***** 阅读全文
posted @ 2020-08-12 18:26 joyce3800 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 1 /************************************************************************/ 2 /* SharedLogging.h 多进程共享日志模块 */ 3 /************************************ 阅读全文
posted @ 2020-08-11 18:48 joyce3800 阅读(155) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <assert.h> #include <stdbool.h> #include <s 阅读全文
posted @ 2020-07-30 09:43 joyce3800 阅读(161) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-03-23 10:04 joyce3800 阅读(1) 评论(0) 推荐(0) 编辑
摘要: http://www.docin.com/p-577283716.html?qq-pf-to=pcqq.c2c 阅读全文
posted @ 2016-04-08 09:07 joyce3800 阅读(233) 评论(0) 推荐(0) 编辑
摘要: http://blog.chinaunix.net/uid-20672257-id-3147337.html 阅读全文
posted @ 2016-04-08 09:06 joyce3800 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1 wchar_t * matchEnd(wchar_t *text) 2 { 3 while(*text != (wchar_t)' ' && *text++ != '\0'); 4 return text; 5 } 6 7 wchar_t * matchValue(wchar_t *text, wchar_t **end) 8 { ... 阅读全文
posted @ 2016-04-05 17:08 joyce3800 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 1 CString csSenMsg; // 要发送的消息 2 3 m_edt_sendMsg.GetWindowText(csSenMsg); // 获得编辑框内容 4 5 if(csSenMsg=="") 6 ... 阅读全文
posted @ 2015-03-23 09:34 joyce3800 阅读(449) 评论(0) 推荐(0) 编辑