0

尝试将任意视频读取为纯 RGB24 像素,因此使用sws_scale()以下方式转换帧:

    //...
    AVFrame* pic_out = av_frame_alloc();
    pic_out->format = AV_PIX_FMT_RGB24;
    pic_out->width  = 1920;
    pic_out->height = 1080;
    av_frame_get_buffer( pic_out, 32 );

    struct SwsContext * img_convert_ctx = sws_getContext(
        1920, 1080, AV_PIX_FMT_YUV420P,
        1920, 1080, AV_PIX_FMT_RGB24,
        SWS_BICUBIC,
        NULL, NULL, NULL
    );
    //...
    sws_scale(
        img_convert_ctx,
        pic_src->data,     //pic_src is from avcodec_receive_frame()
        pic_src->linesize,
        0,
        1080,
        pic_out->data,
        pic_out->linesize
    );

一切都没有任何错误,但pic_out最终具有与pic_src. 可能是什么问题呢?

完整的最小示例在这里(假设是RGB24图像作为2.bmp存在,看起来实际上是YUV -something)

4

1 回答 1

1

问题是我将pic_out->data其视为RGB24图像数据,但它需要pic_out->data[0]

于 2020-03-13T22:22:45.763 回答