Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

Commit

Permalink
remove config.h includes from library headers, fix #100
Browse files Browse the repository at this point in the history
  • Loading branch information
tanersener committed Mar 22, 2019
1 parent b18006f commit 7a2cea6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
5 changes: 4 additions & 1 deletion android/app/src/main/cpp/fftools_cmdutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
*/

/*
* CHANGES 03.2019
* --------------------------------------------------------
* - config.h include removed
*
* CHANGES 08.2018
* --------------------------------------------------------
* - fftools_ prefix added to file name and include guards
Expand All @@ -35,7 +39,6 @@

#include <stdint.h>

#include "config.h"
#include "libavcodec/avcodec.h"
#include "libavfilter/avfilter.h"
#include "libavformat/avformat.h"
Expand Down
6 changes: 4 additions & 2 deletions android/app/src/main/cpp/fftools_ffmpeg.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
*/

/*
* CHANGES 03.2019
* --------------------------------------------------------
* - config.h include removed
*
* CHANGES 08.2018
* --------------------------------------------------------
* - fftools_ prefix added to file name and include guards
Expand All @@ -31,8 +35,6 @@
#ifndef FFTOOLS_FFMPEG_H
#define FFTOOLS_FFMPEG_H

#include "config.h"

#include <stdint.h>
#include <stdio.h>
#include <signal.h>
Expand Down
5 changes: 4 additions & 1 deletion ios/src/fftools_cmdutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
*/

/*
* CHANGES 03.2019
* --------------------------------------------------------
* - config.h include removed
*
* CHANGES 08.2018
* --------------------------------------------------------
* - fftools_ prefix added to file name and include guards
Expand All @@ -35,7 +39,6 @@

#include <stdint.h>

#include "config.h"
#include "libavcodec/avcodec.h"
#include "libavfilter/avfilter.h"
#include "libavformat/avformat.h"
Expand Down
6 changes: 4 additions & 2 deletions ios/src/fftools_ffmpeg.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
*/

/*
* CHANGES 03.2019
* --------------------------------------------------------
* - config.h include removed
*
* CHANGES 08.2018
* --------------------------------------------------------
* - fftools_ prefix added to file name and include guards
Expand All @@ -31,8 +35,6 @@
#ifndef FFTOOLS_FFMPEG_H
#define FFTOOLS_FFMPEG_H

#include "config.h"

#include <stdint.h>
#include <stdio.h>
#include <signal.h>
Expand Down

0 comments on commit 7a2cea6

Please sign in to comment.