摘要: Nginx 是一个免费的,开源的,高性能的HTTP服务器和反向代理,以及IMAP / POP3代理服务器。 Nginx 以其高性能,稳定性,丰富的功能,简单的配置和低资源消耗而闻名。很多高知名度的网站都使用 Nginx,如:Netflix,GitHub,SoundCloud,MaxCDN 等。 Nginx 有一个主线程( master process)和几个工作线程(worker process... 阅读全文
posted @ 2017-02-19 15:41 Mr.Rico 阅读(440) 评论(1) 推荐(0) 编辑
摘要: SSH error ( Read from socket failed: Connection reset by peer ) and it's solution ssh cann't connected ,event in localhost[root@localhost ssh]# ssh 127.0.0.1Read from socket failed: Connection reset b... 阅读全文
posted @ 2017-02-13 07:42 Mr.Rico 阅读(234) 评论(0) 推荐(0) 编辑
摘要: Posted on March 21, 2012 by Moto Just like MPEG-2 video uses VBV (Video Buffer Verifier), H.264 standard uses HRD (Hypothetical Reference Decoder) to define correctness of streams. One of the verifica... 阅读全文
posted @ 2017-02-12 18:28 Mr.Rico 阅读(485) 评论(0) 推荐(0) 编辑
摘要: Part 1 Manao | he is negating a float by printing it, adding a "-" to the string, and converting it back to float Manao | in the process, of course, he doesn't free the allocated string dynaflash ... 阅读全文
posted @ 2017-02-12 18:21 Mr.Rico 阅读(1055) 评论(0) 推荐(0) 编辑
摘要: XSplit uses the x264 encoder, so let’s start off by saying that parameters mentioned in the title, with the exception of the quality parameters, mean the same as the parameters in the x264 wiki here:h... 阅读全文
posted @ 2017-02-12 18:20 Mr.Rico 阅读(620) 评论(0) 推荐(0) 编辑
摘要: 这40项IT技能都能帮你年薪超过12万美元_求职招聘_酷勤网如何在三年之内成长为顶级 Coder?_修炼之道_酷勤网你第一要做的是开始去做_项目管理_酷勤网怎样阅读源代码_项目管理_酷勤网你是码农 还是优秀程序员?_程序人生_酷勤网技术人员的发展之路 | | 酷 壳 - CoolShell如何在面试 阅读全文
posted @ 2017-02-06 00:29 Mr.Rico 阅读(690) 评论(1) 推荐(1) 编辑
摘要: MediaInfo是一个用来分析媒体文件的开源工具。 支持的文件非常全面,基本上支持所有的媒体文件。 最近是在做HEVC开发,所以比较关注MediaInfo中关于HEVC的分析与处理。 从MeidaInfo的官网上下载下来的代码比较庞大,工程比较多,但是代码阅读的一个关键在于,先要抓住主干,然后再不断的深入。先找到自己关注的地方,然后分析,之后再进行分析一些相关的代码。 此处下载... 阅读全文
posted @ 2015-05-16 16:09 Mr.Rico 阅读(2215) 评论(0) 推荐(0) 编辑
摘要: 在streamingmedia上看到的一篇对比HEVC与VP9的文章,挺不错。另外这边文章的几个comment也是不错的。 下面是全文。 The Great UHD Codec Debate: Google's VP9 Vs. HEVC/H.265 As of today, the great UHD codec debate involves two main partici... 阅读全文
posted @ 2015-05-12 10:09 Mr.Rico 阅读(8630) 评论(1) 推荐(0) 编辑
摘要: 14.x264_macroblock_encode函数-1 这个函数主要根据已经选定的模式来对宏块残差进行编码。 (1)如果是P_SKIP模式,那么调用x264_macroblock_encode_pskip函数 在x264_macroblock_encode_pskip中先对亮度和色度进行运动补偿,调用的函数函数h->mc.mc_luma和 h->mc.mc_chroma。这两... 阅读全文
posted @ 2014-05-17 20:44 Mr.Rico 阅读(1957) 评论(0) 推荐(0) 编辑
摘要: x264阅读记录-2 7.x264_encoder_encode函数-1查看该函数代码(Encoder.c文件)可以发现,该函数中注释很详细,对编码的整个步骤展示的也相对比较清晰。在查看具体的代码之前,我们需要了解牵扯到x264帧管理过程中的三个数组:x264_frame_t*current[X26... 阅读全文
posted @ 2013-07-19 11:19 Mr.Rico 阅读(1495) 评论(0) 推荐(0) 编辑
摘要: x264阅读记录-1 采用x264版本是x264-snapshot-20060316-2245。 1. main函数 x264的main函数位于x264.c中,下面是main函数调用情况: (1)_setmode函数和_fileno函数 这两个函数是微软提供的两个库函数。 _setmode函数位于i... 阅读全文
posted @ 2013-07-19 11:17 Mr.Rico 阅读(1675) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash# array-ops.sh: 数组更多有趣的用法.array=( zero one two three four five )# 元素 0 1 2 3 4 5echo ${array[0]} # zeroecho ${array:0} # zero# 第一个元素的参数扩展,#... 阅读全文
posted @ 2013-06-23 11:24 Mr.Rico 阅读(665) 评论(0) 推荐(0) 编辑
摘要: 程序员面试题精选 100 题(39)-颠倒栈 题目:用递归颠倒一个栈。例如输入栈{1, 2, 3, 4, 5},1 在栈顶。颠倒之后的栈为{5, 4, 3, 2, 1},5 处在 栈顶。 分析:乍一看到这道题目,第一反应是把栈里的所有元素逐一 pop 出来,放到一个数组里,然后在数 组里... 阅读全文
posted @ 2012-11-24 11:20 Mr.Rico 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 11.1 If you were integrating a feed of end of day stock price information (open, high, low, and closing price) for 5,000 companies, how would you do ... 阅读全文
posted @ 2012-11-23 23:53 Mr.Rico 阅读(1017) 评论(0) 推荐(0) 编辑
摘要: Chapter 16 | Low Level 16.1 Explain the following terms: virtual memory, page fault, thrashing. SOLUTION Virtual memory is a computer system... 阅读全文
posted @ 2012-11-23 23:53 Mr.Rico 阅读(442) 评论(0) 推荐(0) 编辑