Created
December 12, 2013 18:14
-
-
Save Meekohi/7932644 to your computer and use it in GitHub Desktop.
Point to more common location for libav
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 5cc13cd907cf29bfa56f14ed553328d0952f1adc Mon Sep 17 00:00:00 2001 | |
| From: Michael Holroyd <[email protected]> | |
| Date: Thu, 12 Dec 2013 12:57:56 -0500 | |
| Subject: [PATCH] Point to more common location for libav | |
| --- | |
| CImg.h | 6 +++--- | |
| 1 file changed, 3 insertions(+), 3 deletions(-) | |
| diff --git a/CImg.h b/CImg.h | |
| index bbb098e..e8e9da9 100644 | |
| --- a/CImg.h | |
| +++ b/CImg.h | |
| @@ -317,9 +317,9 @@ extern "C" { | |
| #define __STDC_CONSTANT_MACROS // ...or stdint.h wont' define UINT64_C, needed by libavutil | |
| #endif | |
| extern "C" { | |
| -#include "avformat.h" | |
| -#include "avcodec.h" | |
| -#include "swscale.h" | |
| +#include <libavformat/avformat.h> | |
| +#include <libavcodec/avcodec.h> | |
| +#include <libswscale/swscale.h> | |
| } | |
| #endif | |
| -- | |
| 1.8.3.4 (Apple Git-47) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment