1

FFMPEG ライブラリでサンプル コードをビルドしようとしています。プロジェクトに libavcode.h 、 libavcode.a を追加し、ヘッダー検索 usr/local/include とライブラリ検索を usr/local/lib に設定します。

サンプルをコンパイルすると、このエラーが発生しました... (これらはすべて avcodec ライブラリに関連しています)

{

Undefined symbols:
 "avcodec_find_encoder(CodecID)", referenced from:
  video_encode_example(char const*, CodecID)in main.o
  "avcodec_open2(AVCodecContext*, AVCodec*, AVDictionary**)", referenced from:
  video_encode_example(char const*, CodecID)in main.o
  video_decode_example(char const*, char const*)in main.o
  "av_init_packet(AVPacket*)", referenced from:
  video_decode_example(char const*, char const*)in main.o
  "av_free(void*)", referenced from:
  video_encode_example(char const*, CodecID)in main.o
  video_encode_example(char const*, CodecID)in main.o
  video_encode_example(char const*, CodecID)in main.o
  video_decode_example(char const*, char const*)in main.o
  video_decode_example(char const*, char const*)in main.o
  "avcodec_alloc_context3(AVCodec*)", referenced from:
  video_encode_example(char const*, CodecID)in main.o
  video_decode_example(char const*, char const*)in main.o
  "av_opt_set(void*, char const*, char const*, int)", referenced from:
  video_encode_example(char const*, CodecID)in main.o
  "av_image_alloc(unsigned char**, int*, int, int, PixelFormat, int)", referenced from:
  video_encode_example(char const*, CodecID)in main.o
  "avcodec_encode_video(AVCodecContext*, unsigned char*, int, AVFrame const*)", referenced from:
  video_encode_example(char const*, CodecID)in main.o
  video_encode_example(char const*, CodecID)in main.o
  "avcodec_register_all()", referenced from:
  _main in main.o
  "avcodec_find_decoder(CodecID)", referenced from:
  video_decode_example(char const*, char const*)in main.o
  "avcodec_decode_video2(AVCodecContext*, AVFrame*, int*, AVPacket const*)", referenced from:
  video_decode_example(char const*, char const*)in main.o
  video_decode_example(char const*, char const*)in main.o
  "avcodec_close(AVCodecContext*)", referenced from:
  video_encode_example(char const*, CodecID)in main.o
  video_decode_example(char const*, char const*)in main.o
  "avcodec_alloc_frame()", referenced from:
  video_encode_example(char const*, CodecID)in main.o
  video_decode_example(char const*, char const*)in main.o
 ld: symbol(s) not found
 collect2: ld returned 1 exit status

なぜこの問題が発生したか知っていますか?

ありがとう

4

1 に答える 1

2

FFMPEG は C で書かれているため、解決策はこれをヘッダーに追加することです。

extern "C"
{
#ifndef __STDC_CONSTANT_MACROS
#define __STDC_CONSTANT_MACROS
#endif
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include "avassert.h"
#include "avutil.h"
#include "intreadwrite.h"
#include "mem.h"
 }
于 2013-04-13T03:20:37.723 に答える