mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +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
5012fef332
commit
8f041cc752
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:
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#include <gstmpeg2subt.h>
|
||||
#include "gstmpeg2subt.h"
|
||||
#include <string.h>
|
||||
|
||||
static void gst_mpeg2subt_class_init (GstMpeg2SubtClass * klass);
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#include <gstmpegaudioparse.h>
|
||||
#include "gstmpegaudioparse.h"
|
||||
|
||||
|
||||
/* elementfactory information */
|
||||
|
|
|
@ -21,8 +21,8 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <gstrtjpegenc.h>
|
||||
#include <gstrtjpegdec.h>
|
||||
#include "gstrtjpegenc.h"
|
||||
#include "gstrtjpegdec.h"
|
||||
|
||||
static gboolean
|
||||
plugin_init (GstPlugin * plugin)
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#include <gstrtjpegdec.h>
|
||||
#include "gstrtjpegdec.h"
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#include <gstrtjpegenc.h>
|
||||
#include "gstrtjpegenc.h"
|
||||
|
||||
/* elementfactory information */
|
||||
GstElementDetails gst_rtjpegenc_details = {
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
#include <string.h>
|
||||
#include <gstsmooth.h>
|
||||
#include "gstsmooth.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())
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#include <gststereo.h>
|
||||
#include "gststereo.h"
|
||||
|
||||
/* elementfactory information */
|
||||
static GstElementDetails stereo_details = GST_ELEMENT_DETAILS ("Stereo effect",
|
||||
|
|
Loading…
Reference in a new issue