摘要:
libx264 版本是 128libfaac 版本是 1.28 1、帧的划分 1.1 H.264 帧 对于 H.264 而言每帧的界定符为 00 00 00 01 或者 00 00 01。 比如下面的 h264 文件片断这就包含三帧数据: 第一帧是 00 00 00 01 67 42 C0 28 D 阅读全文
posted @ 2017-05-25 16:30
poisson_notes
阅读(2836)
评论(0)
推荐(0)
摘要:
FFMPEG的很多结构中有AVRational time_base;这样的一个成员,它是AVRational结构的 typedef struct AVRational{ int num; ///< numerator int den; ///< denominator } AVRational; AVRational这个结构标识一个分数,num为分数,den为分母。 ... 阅读全文
posted @ 2017-05-25 15:36
poisson_notes
阅读(739)
评论(0)
推荐(0)