会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
joyce3800
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
下一页
2020年9月19日
avi 打包
摘要: 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
阅读(386)
评论(0)
推荐(0)
2020年9月2日
如何减小linux下so的大小
摘要: 在linux下有个工具叫做strip,这是一个可以将linux下的可执行文件的符号表去除,减少每个可执行文件的大小,这对于嵌入式方面很有必要。但是没有了符号表也就意味着没有办法采用gdb进行调试,因为gdb调试是读取ELF文件头来获取符号表,进而调试,但strip之后,可执行文件的ELF文件头就没有
阅读全文
posted @ 2020-09-02 21:31 joyce3800
阅读(1383)
评论(0)
推荐(0)
2020年8月12日
WIN32多进程共享日志
摘要: 为了解决多个应用进程的日志融合输出的问题,设计了如下的方案。 1 /************************************************************************/ 2 /* SharedLogging.h 多进程共享日志模块 */ 3 /*****
阅读全文
posted @ 2020-08-12 18:26 joyce3800
阅读(227)
评论(0)
推荐(0)
2020年8月11日
基于window的共享日志模块
摘要: 1 /************************************************************************/ 2 /* SharedLogging.h 多进程共享日志模块 */ 3 /************************************
阅读全文
posted @ 2020-08-11 18:48 joyce3800
阅读(165)
评论(0)
推荐(0)
2020年7月30日
基于linux的多线程处理程序
摘要: #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
阅读(167)
评论(0)
推荐(0)
2018年3月23日
遇见lua语言
只有注册用户登录后才能阅读该文。
阅读全文
posted @ 2018-03-23 10:04 joyce3800
阅读(1)
评论(0)
推荐(0)
2016年4月8日
VS2010,VS2005串口控件MSComm加入方法
摘要: http://www.docin.com/p-577283716.html?qq-pf-to=pcqq.c2c
阅读全文
posted @ 2016-04-08 09:07 joyce3800
阅读(237)
评论(0)
推荐(0)
linux下bus、devices和platform的基础模型
摘要: http://blog.chinaunix.net/uid-20672257-id-3147337.html
阅读全文
posted @ 2016-04-08 09:06 joyce3800
阅读(135)
评论(0)
推荐(0)
2016年4月5日
控制台--判断参数
摘要: 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
阅读(252)
评论(0)
推荐(0)
2015年3月23日
vs下字符串的转换
摘要: 1 CString csSenMsg; // 要发送的消息 2 3 m_edt_sendMsg.GetWindowText(csSenMsg); // 获得编辑框内容 4 5 if(csSenMsg=="") 6 ...
阅读全文
posted @ 2015-03-23 09:34 joyce3800
阅读(458)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
下一页
公告