我一直在尝试使用FFmpeg和Visual C ++对帧进行编码。我就是这样做的。 我首先有一个平面RGB24图像缓冲区。我使用以下规则将其转换为平面YUV:
Y = ((66 * R + 129 * G + 25 * B + 128) >> 8) + 16;
U = ((-38 * R - 74 * G + 112 * B + 128) >> 8) + 128;
V = ((112 * R - 94 * G - 18 * B + 128) >> 8) + 128;
我实现了这样:
void rgb8toYuv(uchar* rgb, uchar* yuv, uint pixelAmount) {
uchar r, g, b;
for (uint i = 0; i < pixelAmount; i++) {
r = rgb[3 * i];
g = rgb[3 * i + 1];
b = rgb[3 * i + 2];
yuv[3 * i] = ((66 * r + 129 * g + 25 * b + 128) >> 8) + 16;
yuv[3 * i + 1] = ((-38 * r - 74 * g + 112 * b + 128) >> 8) + 128;
yuv[3 * i + 2] = ((112 * r - 94 * g - 18 * b + 128) >> 8) + 128;
}
}
我打开这样的一切(我使用malloc,因为我已经习惯了它,而且它是我的第一个C ++程序,我想它不应该导致任何问题吗? ):
AVCodec* codec = avcodec_find_encoder(AV_CODEC_ID_H264);
AVFormatContext* outContext;
avformat_alloc_output_context2(&outContext, NULL, "mp4", filepath);
AVStream* video = avformat_new_stream(outContext, codec);
video->codec->bit_rate = VIDEOBITRATE;
video->codec->width = VIDEOWIDTH;
video->codec->height = VIDEOHEIGHT;
video->time_base = fps;
video->codec->gop_size = 10;
video->codec->max_b_frames = 1;
video->codec->pix_fmt = AV_PIX_FMT_YUV420P;
video->codec->codec_id = AV_CODEC_ID_H264;
video->codec->codec_type = AVMEDIA_TYPE_VIDEO;
avio_open(&outContext->pb, filepath, AVIO_FLAG_READ_WRITE);
avformat_write_header(outContext, NULL);
AVFrame* frame = av_frame_alloc();
frame->width = VIDEOWIDTH;
frame->height = VIDEOHEIGHT;
frame->format = AV_PIX_FMT_YUV420P;
然后,这是我用来编码帧的函数:
void encodeFrame(uint currentFrame, uchar* data) { // RGB data
uchar* yuvData = (uchar*) malloc(videoWidth * videoHeight * 3);
rgb8toYuv(data, yuvData, videoWidth * videoHeight);
av_image_fill_arrays(frame->data, frame->linesize, yuvData, AV_PIX_FMT_YUV420P, videoWidth, videoHeight, 3); // I'm not sure about that 3, I couldn't find any documentation about it
AVPacket* packet = (AVPacket*) malloc(sizeof(AVPacket));
memset(packet, 0, sizeof(AVPacket));
av_init_packet(packet);
packet->data = NULL;
packet->size = 0;
frame->pts = currentFrame; // I don't know if this is corrrect too
avcodec_encode_video2(video->codec, packet, frame, NULL);
av_interleaved_write_frame(outContext, packet);
av_packet_unref(packet);
free(yuvData);
free(packet);
}
但是,这会导致Access violation writing location 0x00000000
avcodec_encode_video2
。我检查了每个FFmpeg函数返回的错误,看起来除了av_image_fill_arrays
之外它们都能正常工作,它会返回一个奇怪的1382400
错误,尽管根据调试器的RAM-查看工具,一切都正确填充。
似乎avcodec_encode_video2
试图访问一个不应该是的NULL对象,但是我无法找到它可能是什么,因为我遵循了很多来源的例子,我不知道#39;不知道我做错了什么。
提前致谢!
编辑:在应用Edgar Rokyan建议的修复程序(将第4个参数设置为int指针)之后,我现在在0x00000024
上获得了访问冲突,仍然使用{{ 1}}。我相信问题很相似,但我仍然找不到任何东西。
答案 0 :(得分:0)
您需要在avcodec_encode_video2
之前致电avcodec_open2。建议您不要在avformat_new_stream
的返回流中使用编解码器上下文,而是首先使用avcodec_alloc_context3和avcodec_copy_context将其复制到新变量。
当你完成时,不要忘记关闭(avcodec_close)免费(avcodec_free_context)。