gpt4 book ai didi

c++ - avcodec_open 段错误

转载 作者:行者123 更新时间:2023-12-04 23:29:24 25 4
gpt4 key购买 nike

下午好,

我得到了 ffmpeg 的 api-example.c (https://www.ffmpeg.org/doxygen/0.6/api-example_8c-source.html) 的拷贝。我测试了函数 video_encode_example() 并让代码按预期工作。

然后我将此函数重新分解为不同的类方法,现在我在调用 avcodev_open() 时遇到了段错误。然后我将代码更改为从类方法调用原始 video_encode_example() 并且对 avcodec... 的调用成功。

似乎从函数(例如 video_encode_example())调用时,行为符合预期,但从类方法调用时 avcodev_open 失败。我跟踪了代码,在这两种情况下,avcodev_open() 参数的值都被分配了(和类似的)指针值。 cgdb 报 seg 故障发生在 avcodev_open2()

有什么建议么?
该代码是在 Ubuntu 12.04 64 位机器上编译和测试的)使用通过 apt-get 提供的 libav 包(libavcodec.so.53.35.0)

问候,
丹尼尔

在第一个回复之后添加了评论:

从上面的链接中,我复制了函数 video_encode_example() 并将调用放在类构造函数中。这部分正在工作。

VideoEncoder::VideoEncoder( const std::string& aFileName)
: mCodec( NULL)
, mCodecContext( NULL)
, picture (NULL)
, mFileName( aFileName)
, mFileHandler( NULL)
{
// must be called before using avcodec lib
::avcodec_init();

// register all the codecs
::avcodec_register_all();

video_encode_example( aFileName.c_str());
return;
...
}

重构部分包括将 avcodev 调用(从原始 video_encode_example() 函数)拆分为不同的 VideoEncoder 方法。构造函数现在看起来像:
VideoEncoder::VideoEncoder( const std::string& aFileName)
: mCodec( NULL)
, mCodecContext( NULL)
, picture (NULL)
, mFileName( aFileName)
, mFileHandler( NULL)
{
// must be called before using avcodec lib
::avcodec_init();

// register all the codecs
::avcodec_register_all();

// find the mpeg1 video encoder
mCodec = ::avcodec_find_encoder( CODEC_ID_MPEG1VIDEO);
if (!mCodec) {
fprintf( stderr, "codec not found\n");
exit( 1);
}

mCodecContext = ::avcodec_alloc_context3( mCodec);
picture = ::avcodec_alloc_frame();

// put sample parameters
mCodecContext->bit_rate = 400000;

// frames per second
mCodecContext->time_base = (AVRational){1,25};
mCodecContext->gop_size = 10; // emit one intra frame every ten frames
mCodecContext->max_b_frames = 1;
mCodecContext->pix_fmt = PIX_FMT_YUV420P;

// open it
// Initializes the AVCodecContext to use the given AVCodec. Prior to using this function the context has to be allocated.
if (::avcodec_open( mCodecContext, mCodec) < 0) {
fprintf(stderr, "could not open codec\n");
exit( 1);
}

mFileHandler = fopen( mFileName.c_str(), "wb");
if (!mFileHandler) {
fprintf( stderr, "could not open %s\n", mFileName.c_str());
exit( 1);
}

}

对 avcodec_open 的调用会导致 seg 错误。另外,无论是使用avcodev_..还是::avcodev_...

最佳答案

您的代码未设置 .width/.height mCodecContext 的成员,这会导致后来的崩溃。

Ubuntu 12.04 附带 ffmpeg fork libav在版本 0.8 中更兼容 ffmpeg 1.0+ 甚至更高版本 ffmpeg版本 IIRC。我假设您正在使用该存储库版本并已使用 libav-0.8.12在测试自己的过程中(尽管我个人非常喜欢真正的 ffmpeg ,目前是 ffmpeg-2.2)。

有趣的是,使用 ffmpeg-2.2 (使用 av_codec_open2 )而不是 libav-0.8不会崩溃,而是通常返回失败并打印有关未设置宽度和高度的警告(ffmpeg 而不是 libav 的另一个优点)。

关于c++ - avcodec_open 段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24393578/

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