欢迎访问我的独立博客
摘要: 目录 1 前言 2 Mathematics (数学) 3 Data Structures & Algorithms (数据结构、算法) 4 Compiler (编译原理) 5 Operating System (操作系统) 6 Database (数据库) 7 C (C 语言) 8 C++ (C++ 语言) 9 Object-Oriented (面向对象) 10 Software Engineering (软件工程) 11 UNIX Programming (UNIX编程) 12 UNIX Administration (UNIX系统管理) ... 阅读全文
posted @ 2013-03-30 19:22 github.com/starRTC 阅读(5653) 评论(1) 推荐(0) 编辑
摘要: AVPacket AVPacket定义在avcodec.h中,如下: typedefstructAVPacket { /** * Presentation timestamp in AVStream->time_base units; the time at which * the decompressed packet will be presented to the user. * Can be AV_NOPTS_VALUE if it is not stored in the file. * pts MUST be larger or equal to dts a... 阅读全文
posted @ 2013-03-30 16:18 github.com/starRTC 阅读(435) 评论(0) 推荐(0) 编辑
摘要: AVFormatContext 这个结构体描述了一个媒体文件或媒体流的构成和基本信息,定义如下: typedefstructAVFormatContext { constAVClass *av_class; /**< Set by avformat_alloc_context. */ /* Can only be iformat or oformat, not both at the same time. */ structAVInputFormat *iformat; structAVOutputFormat *oformat; void *priv_data; ... 阅读全文
posted @ 2013-03-30 16:17 github.com/starRTC 阅读(491) 评论(0) 推荐(0) 编辑
摘要: AVStream 该结构体描述一个媒体流,定义如下: typedefstructAVStream { int index; /**< stream index in AVFormatContext */ int id; /**< format-specific stream ID */ AVCodecContext *codec; /**< codec context */ /** * Real base framerate of the stream. * This is the lowest framerate with which all timestamps ... 阅读全文
posted @ 2013-03-30 16:16 github.com/starRTC 阅读(1544) 评论(0) 推荐(0) 编辑
摘要: 整体结构图:附: 聚合(Aggregation) : 表示has-a的关系,是一种不稳定的包含关系。较强于一般关联,有整体与局部的关系,并且没有了整体,局部也可单独存在。如公司和员工的关系,公司包含员工,但如果公司倒闭,员工依然可以换公司。在类图使用空心的菱形表示,菱形从局部指向整体。 依赖(Dependency):对象之间最弱的一种关联方式,是临时性的关联。代码中一般指由局部变量、函数参数、返回值建立的对于其他对象的调用关系。一个类调用被依赖类中的某些方法而得以完成这个类的一些职责。在类图使用带箭头的虚线表示,箭头从使用类指向被依赖的类。AVCodecContext 这是一个描述... 阅读全文
posted @ 2013-03-30 16:09 github.com/starRTC 阅读(583) 评论(0) 推荐(0) 编辑