FFmpeg中AVFrame.linesize的含義

在第一節FFmpeg開發教程1、FFmpeg 版 Hello world中遇到一個問題,在保存YUV的時候,粗暴的使用:html

fwrite(buf, 1, xsize * ysize, f);

方式去拷貝YUV數據是有問題的,獲得的圖片是這樣的:

必須經過如下循環才能獲得正確的YUV:code

static void save_gray_frame(unsigned char *buf, int wrap, int xsize, int ysize, char *filename)
{
    FILE *f = NULL;
    int i = 0;
    f = fopen(filename, "w");
    fprintf(f, "P5\n%d %d\n%d\n", xsize, ysize, 255);
    ![](https://img2018.cnblogs.com/blog/919516/201905/919516-20190510142313623-420164045.jpg)


    for (i = 0; i < ysize; i++) {
        fwrite(buf + wrap * i, 1, xsize, f);
    }
    //fwrite(buf, 1, xsize * ysize, f);
    
    fclose(f);
}

網友解答:Understanding of AVFrame.linesize[]htm

相關文章
相關標籤/搜索