Skip to content
This repository has been archived by the owner on Sep 30, 2018. It is now read-only.

Commit

Permalink
[ffmpeg/libavutil] - fix compilation when using external ffmpeg/libav…
Browse files Browse the repository at this point in the history
… after e064049 - fixes #13096
  • Loading branch information
Memphiz committed Jun 11, 2012
1 parent 4ec793f commit 7d363cd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/DllAvUtil.h
Expand Up @@ -36,12 +36,16 @@ extern "C" {
#if (defined USE_EXTERNAL_FFMPEG)
#if (defined HAVE_LIBAVUTIL_AVUTIL_H)
#include <libavutil/avutil.h>
// for av_get_default_channel_layout
#include <libavutil/audioconvert.h>
#include <libavutil/crc.h>
#include <libavutil/fifo.h>
// for LIBAVCODEC_VERSION_INT:
#include <libavcodec/avcodec.h>
#elif (defined HAVE_FFMPEG_AVUTIL_H)
#include <ffmpeg/avutil.h>
// for av_get_default_channel_layout
#include <ffmpeg/audioconvert.h>
#include <ffmpeg/crc.h>
#include <ffmpeg/fifo.h>
// for LIBAVCODEC_VERSION_INT:
Expand All @@ -64,6 +68,7 @@ extern "C" {
#endif
#else
#include "libavutil/avutil.h"
//for av_get_default_channel_layout
#include "libavutil/audioconvert.h"
#include "libavutil/crc.h"
#include "libavutil/opt.h"
Expand Down

0 comments on commit 7d363cd

Please sign in to comment.