由于for循环,c应用程序使用了ffmpeg segfault



我正在使用从ffmpeg.org文档页面[tutorial][sample]链接到的教程编写我的第一个ffmpeg应用程序。这是我的初始代码:

const char * fnmVideoIn = argv [1];
const char * fnmImageOut = argv [2];
av_register_all ();
// [] Open the file
AVFormatContext * pcxFormat;
if (avformat_open_input (&pcxFormat, fnmVideoIn, NULL, NULL)) {
    fprintf (stderr, "Could not open file %s for readingn",
            fnmVideoIn);
    return -1;
}
// [] Get stream information
if (avformat_find_stream_info (pcxFormat, NULL) < 0) {
    fprintf (stderr, "Could not find stream infon");
    return -1;
}
// [log] print stream info
av_dump_format (pcxFormat, 0, fnmVideoIn, 0);

一切都很好。该程序运行时没有错误,并正确地转储视频信息。但后来我进入了下一步。。。

...
// [log] print stream info
av_dump_format (pcxFormat, 0, fnmVideoIn, 0);
int ixVideoStream = -1, ixStrm;
for (ixStrm = 0; ixStrm < pcxFormat->nb_streams; ++ixStrm) {
    if (pcxFormat->streams [ixStrm]->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
        ixVideoStream = ixStrm;
        break;
    }
}

并且它以segfault退出。gdb表示:

(gdb) r test.mp4 out
...
Program received signal SIGSEGV, Segmentation fault.
0xb7f572c5 in avformat_open_input () from /usr/lib/libavformat.so.53

avformat_open_input如何可能因为在之后添加的代码而分段故障?我甚至用一个正则I=0来测试它;i<循环为100,但仍存在分段故障!这是个虫子吗?作为参考,我的系统是:

$ gcc --version
gcc (GCC) 4.7.0 20120414 (prerelease)
$ uname -srvmpio
Linux 3.3.4-1-ARCH #1 SMP PREEMPT Sat Apr 28 06:04:27 UTC 2012 i686 Intel(R) Core(TM)2 Duo CPU P7450 @ 2.13GHz GenuineIntel GNU/Linux
$ ffmpeg -version
ffmpeg version 0.10.2
built on Mar 17 2012 08:53:01 with gcc 4.6.3
configuration: --prefix=/usr --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-libgsm --enable-libspeex --enable-postproc --enable-shared --enable-x11grab --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libschroedinger --enable-libopenjpeg --enable-librtmp --enable-libpulse --enable-gpl --enable-version3 --enable-runtime-cpudetect --disable-debug --disable-static
libavutil      51. 35.100 / 51. 35.100
libavcodec     53. 61.100 / 53. 61.100
libavformat    53. 32.100 / 53. 32.100
libavdevice    53.  4.100 / 53.  4.100
libavfilter     2. 61.100 /  2. 61.100
libswscale      2.  1.100 /  2.  1.100
libswresample   0.  6.100 /  0.  6.100
libpostproc    52.  0.100 / 52.  0.100

我不确定在其他地方找到解决方案的问题的礼仪,但为了子孙后代,我无论如何都会在这里自我回答。

无论如何,avformat_open_input的第一个参数是指向使用avformat_alloc_context分配的AVFormatContext结构的指针的指针,或者如果您希望函数为您分配它,则为空指针。

在这里,我犯了一个错误,为函数提供了一个未初始化的指针,这会触发偶尔的分段错误。与for循环的连接只是偶然的,可能与编译器如何构建生成的机器代码有关。

相关内容

  • 没有找到相关文章

最新更新