3

嗨,这是我第一次找不到已经回答的问题,所以这是我第一次在这里发布内容。

我有这个代码片段,这是我尝试遵循我发现的一些关于获得一些基本 libav 功能的教程(以我的方式提取视频帧)。

      1 #ifndef INT64_C
      2 #define INT64_C(c) (c ## LL)
      3 #define UINT64_C(c) (c ## ULL)
      4 #endif
      5 
      6 extern "C" {
      7 #include <libavformat/avformat.h>
      8 #include <libavcodec/avcodec.h>
      9 #include <libavutil/avutil.h>
      10 }
      11 #include <iostream>
      12 using namespace std;
      13 #define FILENAME "/home/jon/Videos/testvideo.avi"
      14 
      15 
      16 int main(int argc, char** argv)
      17 {
      18     av_register_all();
      19     AVFormatContext * avFormatPtr = avformat_alloc_context();
      20     if (avformat_open_input(&avFormatPtr, FILENAME, NULL, NULL) != 0)
      21         cout<<"Error while calling avformat_open_input (probably invalid file  format)"<<endl;
      22     if (avformat_find_stream_info(avFormatPtr, NULL) < 0)
      23         cout<<"Error while calling avformat_find_stream_info"<<endl;
      24     av_dump_format(avFormatPtr,0,FILENAME,false);
      25 
      26     cout<<"There are "<<avFormatPtr->nb_streams<<" streams"<<endl;
      27     unsigned int video_codec_id = -1;
      28     for (unsigned int i = 0; i < avFormatPtr->nb_streams; ++i) {
      29         cout<<"loop iteration "<<i<<endl;
      30         if(avFormatPtr->streams[i]->codec->codec_type==AVMEDIA_TYPE_VIDEO)
      31         {
      32             cout<<"Found video "<<i<<endl;
      33             video_codec_id = i;
      34         }
      35         cout<<"debug point";
      36     }
      37 
      38     cout<<"fin"<<endl;
      39}           

现在的问题是这总是段错误,这是输出

    Input #0, avi, from '/home/jon/Videos/testvideo.avi':
      Metadata:
        encoder         : Lavf53.21.0
      Duration: 00:01:51.08, start: 0.000000, bitrate: 17129 kb/s
        Stream #0.0: Video: mpeg4 (Simple Profile), yuv420p, 1920x1088 [PAR 1:1 DAR 30:17], 25 tbr, 25 tbn, 25 tbc
    There are 157328928 streams
    loop iteration 0
    Segmentation fault (core dumped)

每次流的数量都会发生变化,这让我认为它只是指向内存中的一个随机位置,所以我想我一定是误解了一些关于

    avformat_find_stream_info

现在这也总是在第一次循环迭代中出现段错误,所以我猜流也没有被初始化。提前感谢您的帮助。

4

1 回答 1

4

有趣的是av_dump_format()正确地看到流。我能想到的一个可能原因是您的 Libav 安装已损坏——您正在使用具有不同主要版本的标头和库。

尝试打印LIBAVFORMAT_VERSION_INTavformat_version().

于 2013-08-20T05:12:16.340 回答