mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
fix local includes and 64 bits constants
Original commit message from CVS: fix local includes and 64 bits constants
This commit is contained in:
parent
e7045bdb87
commit
9dd4541616
10 changed files with 38 additions and 10 deletions
28
ChangeLog
28
ChangeLog
|
@ -1,3 +1,31 @@
|
|||
2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
|
||||
|
||||
* gst/median/gstmedian.c:
|
||||
* gst/mpeg2subt/gstmpeg2subt.c:
|
||||
* gst/mpegaudioparse/gstmpegaudioparse.c:
|
||||
* gst/mpegstream/gstdvddemux.c:
|
||||
* gst/mpegstream/gstmpegdemux.c:
|
||||
* gst/mpegstream/gstmpegpacketize.c:
|
||||
* gst/rtjpeg/gstrtjpeg.c:
|
||||
* gst/rtjpeg/gstrtjpegdec.c:
|
||||
* gst/rtjpeg/gstrtjpegenc.c:
|
||||
* gst/sine/gstsinesrc.c:
|
||||
* gst/smooth/gstsmooth.c:
|
||||
* gst/smpte/gstsmpte.c:
|
||||
* gst/smpte/gstsmpte.h:
|
||||
* gst/stereo/gststereo.c:
|
||||
* gst/videofilter/gstgamma.c:
|
||||
* gst/videofilter/gstvideobalance.c:
|
||||
* gst/videofilter/gstvideofilter.c:
|
||||
* gst/videofilter/gstvideoflip.c:
|
||||
* gst/videoscale/gstvideoscale.c:
|
||||
* gst/videoscale/videoscale.c:
|
||||
* gst/videotestsrc/gstvideotestsrc.c:
|
||||
* gst/videotestsrc/videotestsrc.c:
|
||||
* gst/wavenc/gstwavenc.c:
|
||||
* gst/wavparse/gstwavparse.c:
|
||||
fix local includes and 64 bits constants
|
||||
|
||||
2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
|
||||
|
||||
* win32/gst.sln:
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
#include <string.h>
|
||||
#include <gstmedian.h>
|
||||
#include "gstmedian.h"
|
||||
#include <gst/video/video.h>
|
||||
|
||||
/* elementfactory information */
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
#include <string.h>
|
||||
#include <gstsmpte.h>
|
||||
#include "gstsmpte.h"
|
||||
#include <gst/video/video.h>
|
||||
#include "paint.h"
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#define __GST_SMPTE_H__
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <gstmask.h>
|
||||
#include "gstmask.h"
|
||||
|
||||
#define GST_TYPE_SMPTE \
|
||||
(gst_smpte_get_type())
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#endif
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <gstvideofilter.h>
|
||||
#include "gstvideofilter.h"
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#endif
|
||||
|
||||
/*#define DEBUG_ENABLED */
|
||||
#include <gstvideobalance.h>
|
||||
#include "gstvideobalance.h"
|
||||
#ifdef HAVE_LIBOIL
|
||||
#include <liboil/liboil.h>
|
||||
#endif
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include <string.h>
|
||||
/*#define DEBUG_ENABLED */
|
||||
#include <gstvideofilter.h>
|
||||
#include "gstvideofilter.h"
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#endif
|
||||
|
||||
/*#define DEBUG_ENABLED */
|
||||
#include <gstvideoflip.h>
|
||||
#include "gstvideoflip.h"
|
||||
#include <string.h>
|
||||
|
||||
/* GstVideoflip signals and args */
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
#endif
|
||||
|
||||
#include <string.h>
|
||||
#include <gstwavenc.h>
|
||||
#include <riff.h>
|
||||
#include "gstwavenc.h"
|
||||
#include "riff.h"
|
||||
|
||||
static void gst_wavenc_base_init (gpointer g_class);
|
||||
static void gst_wavenc_class_init (GstWavEncClass * klass);
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#endif
|
||||
#include <string.h>
|
||||
|
||||
#include <gstwavparse.h>
|
||||
#include "gstwavparse.h"
|
||||
#include "gst/riff/riff-ids.h"
|
||||
#include "gst/riff/riff-media.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue