videoscale: Fix compiler errors caused by not including config.h

_stdint.h requires config.h to be included to properly
use the correct code to get uint8_t and friends.
This commit is contained in:
Sebastian Dröge 2013-03-02 19:29:40 +01:00
parent 87f84122bd
commit 5a58f8b9ec
5 changed files with 13 additions and 1 deletions

View file

@ -25,6 +25,9 @@
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "vs_image.h"
#include "vs_scanline.h"

View file

@ -24,7 +24,6 @@
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

View file

@ -24,6 +24,9 @@
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>

View file

@ -114,6 +114,10 @@
* the strength of the sharpening filter.
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>
#include "vs_scanline.h"

View file

@ -24,6 +24,9 @@
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "vs_scanline.h"