【发布时间】:2012-02-19 08:49:22
【问题描述】:
目前正在学习Martin BohmeTutorial Here的ffmpeg教程
我想使用 Code Block IDE 编译一个 ffmpeg 示例程序,但是它不能
#include <stdio.h>
#include <stdlib.h>
#include "libavcodec/avcodec.h"
#include "libavformat/avformat.h"
int main(int argc, char *argv[])
{
av_register_all();
return 0;
}
请帮助我。如何编译它。我正在使用 Linux (Ubuntu)
【问题讨论】:
-
你有什么问题?请编辑您的问题以添加错误等内容。
-
编译器说找不到“libavcodec/avcodec.h”这是我的问题。或者如何编译Martine Bohme的示例程序的示例程序?