用FFMPEG将YUV帧转换为RGBA帧



我想开发一个能够使用ffmpeg库将YUV帧转换为RGBA帧的应用程序。我已经开始写这段代码:

void Decode::video_encode_example(const char *filename, int codec_id)
{
    AVCodec *codec;
    AVCodecContext *c= NULL;
    int i, ret, x, y, got_output;
    FILE *f;
    AVFrame *frame;
    AVPacket pkt;
    uint8_t endcode[] = { 0, 0, 1, 0xb7 };
    printf("Encode video file %sn", filename);
    /* find the mpeg1 video encoder */
    codec = avcodec_find_encoder((enum AVCodecID)codec_id);
    if (!codec) {
        fprintf(stderr, "Codec not foundn");
        exit(1);
    }
    c = avcodec_alloc_context3(codec);
    if (!c) {
        fprintf(stderr, "Could not allocate video codec contextn");
        exit(2);
    }
    /* put sample parameters */
    c->bit_rate = 400000;
    /* resolution must be a multiple of two */
    c->width = 352; // Avant c'était du 352x288
    c->height = 288;
    /* frames per second */
    c->time_base = (AVRational){1,25};
    /* emit one intra frame every ten frames
     * check frame pict_type before passing frame
     * to encoder, if frame->pict_type is AV_PICTURE_TYPE_I
     * then gop_size is ignored and the output of encoder
     * will always be I frame irrespective to gop_size
     */
    c->gop_size = 10;
    c->max_b_frames = 1;
    printf("Avantn");
    c->pix_fmt = PIX_FMT_RGBA;// Avant c'était AV_PIX_FMT_YUV420P
    printf("Aprèsn");
    if (codec_id == AV_CODEC_ID_H264)
        av_opt_set(c->priv_data, "preset", "slow", 0);
    /* open it */
    if (avcodec_open2(c, codec, NULL) < 0) {
        fprintf(stderr, "Could not open codecn");
        exit(3);
    }
    f = fopen(filename, "wb");
    if (!f) {
        fprintf(stderr, "Could not open %sn", filename);
        exit(4);
    }
    frame = avcodec_alloc_frame();// Dans une version plus récente c'est av_frame_alloc
    if (!frame) {
        fprintf(stderr, "Could not allocate video framen");
        exit(5);
    }
    frame->format = c->pix_fmt;
    frame->width  = c->width;
    frame->height = c->height;

然而,每次我运行这个应用程序时,在我的Linux终端中出现以下错误:

[mpeg2video @ 0x10c7040]指定的pix_fmt不支持

我不确定你如何相信你的代码与你的问题相关;你的问题表明你想做一个像素格式转换从YUV到RGB,为此你可以使用ffmpeg的libswscale。但是,您的代码正在创建一个MPEG-1/2编码器对象,并尝试将RGB输入数据编码为MPEG-1/2。这是不可能的,ffmpeg的MPEG-1/2编码器只支持YUV420P。我不太确定应该推荐什么,而不是弄清楚你是否要编码MPEG-1/2视频,在这种情况下,你的输入应该是YUV420P,而不是RGBA,或者你是否想做像素格式转换,在这种情况下,你应该使用libswscale…

相关内容

  • 没有找到相关文章

最新更新