avframe中的linesize与width的关系

在看别人的代码时,发现有这个

for (int i=0; i < nheight; i++) 
								{ 
									memcpy(m_pYUVBuffer + nYUVBufsize , m_pYUVFrame->data[0] + i * m_pYUVFrame->linesize[0], 
										nwidth); 
									nYUVBufsize += nwidth; 
								} 
								for (int i=0; i < nheight/2; i++) 
								{ 
									memcpy(m_pYUVBuffer + nYUVBufsize , m_pYUVFrame->data[1] + i * m_pYUVFrame->linesize[1],
										nwidth/2); 
									nYUVBufsize += nwidth/2; 
								} 
								for (int i=0; i < nheight/2; i++) 
								{
									memcpy(m_pYUVBuffer + nYUVBufsize , m_pYUVFrame->data[2] + i * m_pYUVFrame->linesize[2],
										nwidth/2); 
									nYUVBufsize += nwidth/2; 
								}

为什么不直接使用

memcpy(m_pYUVBuffer + nYUVBufsize, m_pYUVFrame->data[0], nheight*nwidth);
								nYUVBufsize += nheight*nwidth;
								memcpy(m_pYUVBuffer + nYUVBufsize, m_pYUVFrame->data[1], nheight*nwidth/4);
								nYUVBufsize += nheight*nwidth/4;
								memcpy(m_pYUVBuffer + nYUVBufsize, m_pYUVFrame->data[2], nheight*nwidth/4);
								nYUVBufsize += nheight*nwidth/4;
								
后来发现这样是不行的,因为linesize是指每一行占多少字节,可能比宽度nwidth要大,它是根据cpu来对齐的,可能是16或32的整数倍,不同的cpu有不同的对齐方式。

要通过上面的for循环将yuv数据放到一个bufer中

你可能感兴趣的:(avframe中的linesize与width的关系)