使用FFMPEG将YUV帧转换为RGBA帧

时间:2015-05-28 15:10:27

标签: ffmpeg rgb codec yuv

我想开发一个能够使用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 %s\n", filename);

    /* find the mpeg1 video encoder */
    codec = avcodec_find_encoder((enum AVCodecID)codec_id);

    if (!codec) {
        fprintf(stderr, "Codec not found\n");
        exit(1);
    }

    c = avcodec_alloc_context3(codec);
    if (!c) {
        fprintf(stderr, "Could not allocate video codec context\n");
        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("Avant\n");
    c->pix_fmt = PIX_FMT_RGBA;// Avant c'était AV_PIX_FMT_YUV420P
    printf("Après\n");
    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 codec\n");
        exit(3);
    }

    f = fopen(filename, "wb");
    if (!f) {
        fprintf(stderr, "Could not open %s\n", 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 frame\n");
        exit(5);
    }
    frame->format = c->pix_fmt;
    frame->width  = c->width;
    frame->height = c->height;

但是,每次运行此应用程序时,我的Linux终端中都会出现以下错误:

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

你能帮我吗?

1 个答案:

答案 0 :(得分:3)

我不确定您认为您的代码与您的问题相关;您的问题表明您希望进行从YUV到RGB的像素格式转换,例如,您可以将其转换为RGB格式。使用ffmpeg&#39; s libswscale。但是,您的代码正在创建MPEG-1/2编码器对象,并尝试将RGB输入数据编码为MPEG-1/2。这是不可能的,ffmpeg的MPEG-1/2编码器仅支持YUV420P。我不太确定除了要确定是否要编码MPEG-1/2视频之外还要推荐什么,在这种情况下你的输入应该是YUV420P,而不是RGBA,或者你是否要进行像素格式转换,在这种情况下你应该使用libswscale ...