gpt4 book ai didi

C++ h264 ffmpeg/libav 编码/解码(无损)问题

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:46:03 26 4
gpt4 key购买 nike

使用 ffmpeg h264(无损)编码/解码视频的见解

所以我在编码部分做了一些工作,用 264 编码一个 avi,但是 VLC 不会播放它,但是 Totem 会。解码同一个文件证明很麻烦。 (我想要输入和输出完全相同的数据/帧),我得到这些;

saving frame   5
Video decoding
[h264 @ 0x1d19880] decode_slice_header error
frame :6
saving frame 6
Video decoding
[h264 @ 0x1d19880] error while decoding MB 15 7, bytestream -27
[h264 @ 0x1d19880] concealing 194 DC, 194 AC, 194 MV errors in I frame
frame :7
saving frame 7
Video decoding
[h264 @ 0x1d19880] decode_slice_header error

最后是这个

[H264 Decoder @ 0x7f1320766040] frame :11
Broken frame packetizing
[h264 @ 0x1d19880] SPS changed in the middle of the frame
[h264 @ 0x1d19880] decode_slice_header error
[h264 @ 0x1d19880] no frame!
Error while decoding frame 11

游戏结束。

现在我怀疑我必须回到 1. 编码部分,VLC 无法播放它可能有充分的理由!

我这样编码。

void encode(char *Y,char *U,char *V){
av_init_packet(&pkt);
pkt.data = NULL; // packet data will be allocated by the encoder
pkt.size = 0;
fflush(stdout);

frame->data[0] = (uint8_t*)Y;
frame->data[1] = (uint8_t*)U;
frame->data[2] = (uint8_t*)V;
frame->pts = ++i;

ret = avcodec_encode_video2(c, &pkt, frame, &got_output);
if (ret < 0) {
fprintf(stderr, "Error encoding frame\n");
exit (EXIT_FAILURE);
}
if (got_output) {
printf("Write frame %3d (size=%5d)\n", i, pkt.size);
fwrite(pkt.data, 1, pkt.size, f);
av_free_packet(&pkt);
}
}

编解码器是这样设置的:

AVCodecID dasd = AV_CODEC_ID_H264;
codec = avcodec_find_encoder(dasd);
c = avcodec_alloc_context3(codec);
c->bit_rate = 400000;
c->width = 320;
c->height = 240;
c->time_base= (AVRational){1,25};
c->gop_size = 10;
c->max_b_frames=1;
c->pix_fmt = AV_PIX_FMT_YUV420P;
av_opt_set(c->priv_data, "preset", "slow", 0);
avcodec_open2(c, codec, NULL);

因为我要无损,所以我不处理延迟帧(这是正确的假设吗?)我可能实际上并没有进行无损编码,看来我可能不得不使用类似的东西

AVDictionary *param;
av_dict_set(&param, "qp", "0", 0);

然后打开...

所以我想我的问题是这些:

  • 无损编码的正确编解码器参数是什么(如果 h264 在这方面是一个糟糕的想法,请提出建议)。
  • 在实现无损时是否需要处理延迟帧?
  • 为什么 VLC 生我的气?

谢谢。

最佳答案

  1. 实现无损:av_dict_set(&param, "crf", "0", 0);
  2. 延迟帧(B 帧)与无损无关。如果您需要低延迟,则不要使用 B 帧。

您的编码中存在严重错误。 “I 帧中的 MV 错误”错误在这里很奇怪,I 帧中不应该有任何 MV。似乎 header 解析本身出错了。请分享 VLC 失败的比特流和更多详细信息

关于C++ h264 ffmpeg/libav 编码/解码(无损)问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38255749/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com