mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
Include "_stdint.h" instead of <stdint.h>. Fixes build on systems that do not have stdint.h, like Solaris 9 (fixes #1...
Original commit message from CVS: Include "_stdint.h" instead of <stdint.h>. Fixes build on systems that do not have stdint.h, like Solaris 9 (fixes #166631).
This commit is contained in:
parent
6010757ef6
commit
0ffbeb03c1
4 changed files with 12 additions and 3 deletions
|
@ -1,3 +1,12 @@
|
|||
2005-02-08 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* ext/tarkin/mem.h:
|
||||
* ext/tarkin/wavelet.h:
|
||||
* ext/tarkin/yuv.h:
|
||||
* gst/ffmpegcolorspace/avcodec.h:
|
||||
Include "_stdint.h" instead of <stdint.h>. Fixes build on
|
||||
systems that don't have stdint.h, like Solaris9 (fixes #166631).
|
||||
|
||||
2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef __MEM_H
|
||||
#define __MEM_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "_stdint.h"
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef __WAVELET_H
|
||||
#define __WAVELET_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "_stdint.h"
|
||||
|
||||
|
||||
typedef struct {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#ifndef __YUV_H
|
||||
#define __YUV_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "_stdint.h"
|
||||
#include "wavelet.h"
|
||||
|
||||
extern void rgb24_to_yuv (uint8_t *rgb, Wavelet3DBuf *yuv [], uint32_t frame);
|
||||
|
|
Loading…
Reference in a new issue