fix local includes and 64 bits constants

Original commit message from CVS:
fix local includes and 64 bits constants
This commit is contained in:
Steve Lhomme 2004-07-27 21:51:32 +00:00
parent 7b86915b8a
commit 508098a9b9
7 changed files with 41 additions and 13 deletions

View file

@ -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> 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
* win32/gst.sln: * win32/gst.sln:

View file

@ -24,7 +24,7 @@
#include <string.h> #include <string.h>
/*#define DEBUG_ENABLED */ /*#define DEBUG_ENABLED */
#include <gstvideofilter.h> #include "gstvideofilter.h"

View file

@ -29,7 +29,7 @@
#include <string.h> #include <string.h>
#include <gst/control/control.h> #include <gst/control/control.h>
#include <gstsinesrc.h> #include "gstsinesrc.h"
/* elementfactory information */ /* elementfactory information */
GstElementDetails gst_sinesrc_details = { GstElementDetails gst_sinesrc_details = {
@ -183,8 +183,8 @@ gst_sinesrc_init (GstSineSrc * src)
src->table_pos = 0.0; src->table_pos = 0.0;
src->table_size = 1024; src->table_size = 1024;
src->samples_per_buffer = 1024; src->samples_per_buffer = 1024;
src->timestamp = 0LLU; src->timestamp = G_GINT64_CONSTANT (0);
src->offset = 0LLU; src->offset = G_GINT64_CONSTANT (0);
src->seq = 0; src->seq = 0;
@ -484,8 +484,8 @@ gst_sinesrc_change_state (GstElement * element)
switch (GST_STATE_TRANSITION (element)) { switch (GST_STATE_TRANSITION (element)) {
case GST_STATE_PAUSED_TO_READY: case GST_STATE_PAUSED_TO_READY:
src->timestamp = 0LLU; src->timestamp = G_GINT64_CONSTANT (0);
src->offset = 0LLU; src->offset = G_GINT64_CONSTANT (0);
break; break;
default: default:
break; break;

View file

@ -21,8 +21,8 @@
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif
#include <gstvideoscale.h> #include "gstvideoscale.h"
#include <videoscale.h> #include "videoscale.h"
/* debug variable definition */ /* debug variable definition */

View file

@ -25,7 +25,7 @@
#include <gst/gst.h> #include <gst/gst.h>
#include <stdlib.h> #include <stdlib.h>
#include <math.h> #include <math.h>
#include <videoscale.h> #include "videoscale.h"
#include <string.h> #include <string.h>
#include "gstvideoscale.h" #include "gstvideoscale.h"

View file

@ -20,8 +20,8 @@
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif
#include <gstvideotestsrc.h> #include "gstvideotestsrc.h"
#include <videotestsrc.h> #include "videotestsrc.h"
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>

View file

@ -23,8 +23,8 @@
/* non-GST-specific stuff */ /* non-GST-specific stuff */
#include <gstvideotestsrc.h> #include "gstvideotestsrc.h"
#include <videotestsrc.h> #include "videotestsrc.h"
#ifdef HAVE_LIBOIL #ifdef HAVE_LIBOIL
#include <liboil/liboil.h> #include <liboil/liboil.h>
#endif #endif