摘要: 1、ROM bios --> 启动盘第一个扇区(此处内容为boot) 加载到 内存位置0x7C00(31KB) --> 执行权转移(也就相当于跳转) boot程序主要功能:把 软盘/映像文件 中的 head内核代码加载到内存某个指定位置处,并在设置好临时GDT表等信息后,把处理器设置成运行在保护模... 阅读全文
posted @ 2015-12-29 16:16 CodeSkill 阅读(186) 评论(0) 推荐(0)
摘要: 1 # Makefile for the simple example kernel. 2 AS86 =as86 -0 -a 3 LD86 =ld86 -0 4 AS =gas 5 LD =gld 6 LDFLAGS =-s -x -M 7 8 all: Im... 阅读全文
posted @ 2015-12-29 16:08 CodeSkill 阅读(121) 评论(0) 推荐(0)
摘要: 1 # head.s contains the 32-bit startup code. 2 # Two L3 task multitasking. The code of tasks are in kernel area, 3 # just like the Linux. The ... 阅读全文
posted @ 2015-12-29 16:07 CodeSkill 阅读(224) 评论(0) 推荐(0)
摘要: 1 ! boot.s 2 ! 3 ! It then loads the system at 0x10000, using BIOS interrupts. Thereafter 4 ! it disables all interrupts, changes to protected mod... 阅读全文
posted @ 2015-12-29 16:06 CodeSkill 阅读(295) 评论(0) 推荐(0)
摘要: 1、弄出来的 ?.mpeg/?.mpg 形式的文件始终不对,要么不能播放,要么就播放的太快...我的尝试:1.1、通过output_example 的代码(A、ffmpeg中源码自带的;B、下载的 例子代码) 生成,播放速度太快1.2、通过这篇文章 “最简单的基于FFMPEG的视频编码器(YUV编码... 阅读全文
posted @ 2015-12-29 14:29 CodeSkill 阅读(116) 评论(0) 推荐(0)
摘要: 1、FFmpeg获取DirectShow设备数据(摄像头,录屏)http://blog.csdn.net/leixiaohua1020/article/details/382849612、 阅读全文
posted @ 2015-12-29 14:20 CodeSkill 阅读(302) 评论(0) 推荐(0)
摘要: 一、官网https://www.ffmpeg.org/貌似是官方发布的编译好的各种版本:http://ffmpeg.zeranoe.com/builds/二、参考资料1、FFmpeg SDK使用实例output_example的分析之一 (http://blog.chinaunix.net/uid-... 阅读全文
posted @ 2015-12-29 10:35 CodeSkill 阅读(290) 评论(0) 推荐(0)