jack的视频编码工作台

专注h.264硬件编码实现

IT博客 首页 新随笔 联系 聚合 管理
  6 Posts :: 0 Stories :: 5 Comments :: 0 Trackbacks
先Y后U后V,无冗余信息

A video sequence stored in the YUV format is stored  by concatenating
consecutive frames into a single big file. Each frame contains the Y pixels
for that frame first, followed by the U pixels (actually Cr pixel), followed
by V pixels (actually Cb pixels). Each component is raster-scanned from
the top left corner down to the bottom right corner.
Each pixel value is stored as a 8 bit unsigned character.

For example, a frame in a QCIF sequence with 176x144 Y pixels and
88x72 U and V pixels is stored in the following order:

           176
     +-------------+
     |                      |
     |     Y              | 144
     |                      |
     |                      |
     +-------------+
       88
     +------+
     |  U      |
     |           |72
     +------+
     |  V      |
     |           |72
     +------+
posted on 2005-11-01 11:06 jackopt 阅读(4930) 评论(5)  编辑 收藏 引用 所属分类: 压缩标准及算法

评论

# re: YUV文件格式 2007-04-24 12:52 williamdjj
yuv格式没有头信息吗,有没详细一点的资料  回复  更多评论
  

# re: YUV文件格式 2007-07-10 16:15 arm7000
捕捉到每一帧yuv画面后,如何存成yuv视频文件?  回复  更多评论
  

# re: YUV文件格式 2007-07-12 09:35 dhe
用dump命令  回复  更多评论
  

# re: YUV文件格式 2008-04-01 11:47 Yarture
按帧顺序存在一个文件里就可以了,每一次写文件都写到文件的末尾,每一帧中先写Y,再写U,再写V,然后下一帧接着写就可以产生YUV视频文件了.@arm7000
  回复  更多评论
  

# re: YUV文件格式 2012-11-14 15:21 游客
有帮助~~~  回复  更多评论
  

只有注册用户登录后才能发表评论。