- 博客(8)
- 收藏
- 关注
转载 vim 查找替换
From: http://www.cnblogs.com/ltang/articles/2034291.htmlvi/vim 中可以使用 :s 命令来替换字符串:s/vivian/sky/ 替换当前行第一个 vivian 为 sky:s/vivian/sky/g 替换当前行所有 vivian 为 sky:n,$s/vivian/sky/ 替换第 n 行开
2013-08-29 05:32:53
562
转载 成功在MP4封装的H264视频中提取能播放的裸流
http://blog.sina.com.cn/s/blog_6e1ad0cf01016zl3.html
2013-08-23 04:56:05
1299
转载 H264基本概念--【转】图像、帧、片、NALU
1# 图像、帧、片、NALU 是学习 H.264 的人常常感到困惑的一些概念,我在这里对自己的理解做一些阐述,欢迎大家讨论: H.264 是一次概念的革新,它打破常规,完全没有 I 帧、P帧、B 帧的概念,也没有 IDR 帧的概念。对于 H.264 中出现的一些概念从大到小排序依次是:序列、图像、片组、片、NALU、宏块、亚宏块、块、像素。这里有几点值得说明:(1)、
2013-08-23 02:05:22
973
转载 【流媒體】H264—MP4格式及在MP4文件中提取H264的SPS、PPS及码流
http://www.cnblogs.com/skyseraph/archive/2012/04/01/2429384.html
2013-08-22 08:12:01
699
原创 Segmentation fault in c program runtime
There is a common fault in c when using pointer to represent array or string. For example#include void main(){char *p="china";printf("%s",p);}This program will get the result chinaH
2013-02-28 23:52:23
501
原创 The use of sizeof in C
The definition of sizeof is bellowThe sizeof keyword gives the amount of storage, in bytes, associated with a variable or a type (including aggregate types). This keyword returns a value of type s
2013-02-28 04:33:37
501
转载 C语言结构体的学习
结构体的一般形式:struct 结构体名 {成员类型 成员名;......成员类型 成员名;};结构体名是自定义的标识符, 但是要遵循自定义标识符的命名规则。 其中的成员类型可以是任何基本数据类型,也可以是指针或数组等复合数据类型,还可以是结构体或共用体。struct personnel{char name[20];char gender[1
2013-02-26 23:46:23
354
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人