7

我正在尝试使用 gcc 执行 tutorial01.c,并且我在同一个文件夹中拥有 gcc 和 tutorial01.c 以及 libavcodec 和 libavformat 及其相关文件,它给了我这个错误

致命错误:libavcodec/avcodec.h 没有此类文件或目录编译终止

当我 gcc -o tutorial01 tutorial01.c -lavformat -lavcodec -lz在 ubuntu 12.04 中运行终端时

代码是

#include  libavcodec/avcodec.h
#include libavformat/avformat.h
#include stdio.h

void SaveFrame(AVFrame *pFrame, int width, int height, int iFrame)
 {
  FILE *pFile;
  char szFilename[32];
  int  y;

  // Open file
  sprintf(szFilename, "frame%d.ppm", iFrame);
  pFile=fopen(szFilename, "wb");
  if(pFile==NULL)
    return;

  // Write header
  fprintf(pFile, "P6\n%d %d\n255\n", width, height);
  // Write pixel data
  for(y=0; y<height; y++)
    fwrite(pFrame->data[0]+y*pFrame->linesize[0], 1, width*3, pFile);

  // Close file
  fclose(pFile);
}

int main(int argc, char *argv[])
 {
  AVFormatContext *pFormatCtx;
  int             i, videoStream;
  AVCodecContext  *pCodecCtx;
  AVCodec         *pCodec;
  AVFrame         *pFrame; 
  AVFrame         *pFrameRGB;
  AVPacket        packet;
  int             frameFinished;
  int             numBytes;
  uint8_t         *buffer;

  if(argc < 2) 
  {
    printf("Please provide a movie file\n");
    return -1;
  }

  // Register all formats and codecs
  av_register_all();
  // Open video file
  if(av_open_input_file(&pFormatCtx, argv[1], NULL, 0, NULL)!=0)
    return -1; // Couldn't open file

  // Retrieve stream information
  if(av_find_stream_info(pFormatCtx)<0)
    return -1; // Couldn't find stream information

  // Dump information about file onto standard error
  dump_format(pFormatCtx, 0, argv[1], 0);
  // Find the first video stream
  videoStream=-1;
  for(i=0; i<pFormatCtx->nb_streams; i++)
    if(pFormatCtx->streams[i]->codec->codec_type==CODEC_TYPE_VIDEO)
    {
      videoStream=i;
      break;
    }
  if(videoStream==-1)
    return -1; // Didn't find a video stream

  // Get a pointer to the codec context for the video stream
  pCodecCtx=pFormatCtx->streams[videoStream]->codec;
  // Find the decoder for the video stream
  pCodec=avcodec_find_decoder(pCodecCtx->codec_id);
  if(pCodec==NULL) 
  {
    fprintf(stderr, "Unsupported codec!\n");
    return -1; // Codec not found
  }

  // Open codec
  if(avcodec_open(pCodecCtx, pCodec)<0)
    return -1; // Could not open codec

  // Allocate video frame
  pFrame=avcodec_alloc_frame();

  // Allocate an AVFrame structure
  pFrameRGB=avcodec_alloc_frame();

  if(pFrameRGB==NULL)
    return -1;

  // Determine required buffer size and allocate buffer              
 numBytes=avpicture_get_size(PIX_FMT_RGB24, pCodecCtx->width,
                  pCodecCtx->height);

  buffer=(uint8_t *)av_malloc(numBytes*sizeof(uint8_t));

  // Assign appropriate parts of buffer to image planes in pFrameRGB
  // Note that pFrameRGB is an AVFrame, but AVFrame is a superset
  // of AVPicture
  avpicture_fill((AVPicture *)pFrameRGB, buffer, PIX_FMT_RGB24,
         pCodecCtx->width, pCodecCtx->height);

  // Read frames and save first five frames to disk
  i=0;
  while(av_read_frame(pFormatCtx, &packet)>=0)
 {
    // Is this a packet from the video stream?
    if(packet.stream_index==videoStream) 
    {
      // Decode video frame
      avcodec_decode_video(pCodecCtx, pFrame, &frameFinished, 
               packet.data, packet.size);

      // Did we get a video frame?
      if(frameFinished) 
      {
        // Convert the image from its native format to RGB




    img_convert((AVPicture *)pFrameRGB, PIX_FMT_RGB24, 
                    (AVPicture*)pFrame, pCodecCtx->pix_fmt, pCodecCtx->width, 
                    pCodecCtx->height);




    // Save the frame to disk

    if(++i<=5)
  SaveFrame(pFrameRGB, pCodecCtx->width, pCodecCtx->height, 
            i);
      }
   }

    // Free the packet that was allocated by av_read_frame
    av_free_packet(&packet);
  }

  // Free the RGB image
  av_free(buffer);
  av_free(pFrameRGB);

  // Free the YUV frame
  av_free(pFrame);

 // Close the codec
  avcodec_close(pCodecCtx);


  // Close the video file
  av_close_input_file(pFormatCtx);


  return 0;

}
4

3 回答 3

2

您需要将 libavcodec 和 libavformat 包含文件的路径添加到命令行。找到 include/ 目录并添加

-Ipath/to/include

对于每个相关的包含文件。

您还需要使用 -L 对库目录执行相同的操作。

于 2012-08-26T03:31:10.143 回答
2

由于路径错误而发生该错误

-L/home/yourpath/ffmpeg_build/lib/

-I/home/yourpath/ffmpeg_build/include/

ffmpeg_build - 将在哪里构建文件和安装库。

例子 :

创建文件“execute.sh”

现在打开文件并粘贴以下代码:

g++ -Wno-format-zero-length -Wno-write-strings -L/home/yourpath/ffmpeg_build/lib/ -I/home/yourpath/ffmpeg_build/include/ -o output program.cpp -lavcodec -lavformat -lavutil -lavdevice -lswresample -lswscale -lm -lva -lpthread -lvorbis -lvpx -lopus -lz -lpostproc -ldl -lfdk-aac -lmp3lame -lvorbisenc -lvorbisfile -lx264 -ltheora -ltheoraenc -ltheoradec -ldl -lrt -lx265 -lbz2

并输入: sh execute.sh 和二进制将以名称“输出”创建,然后输入 ./output 进行输出。

注意:以上对于 C++,对于 c 代码将 g++ 更改为 gcc

于 2016-04-23T12:50:45.047 回答
1

这取决于您如何安装 ffmpeg。通常,您可以通过 3 个步骤编译和安装:

  1. ./configure --prefix=/yourpath/ffmpeg
  2. 制作
  3. 进行安装

如果您没有配置“--prefix”参数,它将安装在您的默认路径。(在我的Ubuntu上,我发现ffmpeg已安装在“/usr/local/”)

正确安装 ffmpeg 后,您可以使用以下命令编译您的代码:

gcc testFfmpeg.c -I/yourpath/ffmpeg/include/ -L/yourpath/ffmpeg/lib/

或者

gcc testFfmpeg.c -I/usr/local/include/ -L/usr/local/lib/
于 2019-04-23T01:42:40.943 回答