libav:用RGB24样本数据填充AVFrame?

时间:2012-05-31 02:33:02

标签: c image-processing ffmpeg libavcodec libav

我正在尝试为使用RGB24格式初始化的AVFrame填充示例数据。 我使用以下代码片段来填充RGB数据。 但在编码视频中,我只能看到仅覆盖视频帧1/3的灰度条。 此代码段假设仅填充红色。 我在这里做错了什么提示?

AVFrame *targetFrame=.....
int height=imageHeight();
int width=imageWidth();


  for(y=0;y<encoder.getVideoParams().height ;y++){   
       for(x=0;x< encoder.getVideoParams().width;x++){


   targetFrame->data[0][(y* width)+x]=(x%255); //R  
   targetFrame->data[0][(y* width)+x+1]=0;     //G
   targetFrame->data[0][(y* width)+x+2]=0;     //B


  }
   }

1 个答案:

答案 0 :(得分:2)

如果您使用的是RGB24,则需要在索引到数据缓冲区之前缩放坐标。这是你的内循环的一个版本,它将正确地执行:

int offset = 3 * (x + y * width);
targetFrame->data[0][offset + 0] = x % 255; // R
targetFrame->data[0][offset + 1] = 0; // G
targetFrame->data[0][offset + 2] = 0; // B

这是一个更简单的方法:

uint8_t *p = targetFrame->data[0];
for(y = 0; y < encoder.getVideoParams().height; y++) {  
    for(x = 0; x < encoder.getVideoParams().width; x++) {
        *p++ = x % 255; // R
        *p++ = 0; // G
        *p++ = 0; // B
    }
}