mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +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
7b86915b8a
commit
508098a9b9
7 changed files with 41 additions and 13 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:
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include <string.h>
|
||||
/*#define DEBUG_ENABLED */
|
||||
#include <gstvideofilter.h>
|
||||
#include "gstvideofilter.h"
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <string.h>
|
||||
#include <gst/control/control.h>
|
||||
|
||||
#include <gstsinesrc.h>
|
||||
#include "gstsinesrc.h"
|
||||
|
||||
/* elementfactory information */
|
||||
GstElementDetails gst_sinesrc_details = {
|
||||
|
@ -183,8 +183,8 @@ gst_sinesrc_init (GstSineSrc * src)
|
|||
src->table_pos = 0.0;
|
||||
src->table_size = 1024;
|
||||
src->samples_per_buffer = 1024;
|
||||
src->timestamp = 0LLU;
|
||||
src->offset = 0LLU;
|
||||
src->timestamp = G_GINT64_CONSTANT (0);
|
||||
src->offset = G_GINT64_CONSTANT (0);
|
||||
|
||||
src->seq = 0;
|
||||
|
||||
|
@ -484,8 +484,8 @@ gst_sinesrc_change_state (GstElement * element)
|
|||
|
||||
switch (GST_STATE_TRANSITION (element)) {
|
||||
case GST_STATE_PAUSED_TO_READY:
|
||||
src->timestamp = 0LLU;
|
||||
src->offset = 0LLU;
|
||||
src->timestamp = G_GINT64_CONSTANT (0);
|
||||
src->offset = G_GINT64_CONSTANT (0);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
|
@ -21,8 +21,8 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#include <gstvideoscale.h>
|
||||
#include <videoscale.h>
|
||||
#include "gstvideoscale.h"
|
||||
#include "videoscale.h"
|
||||
|
||||
|
||||
/* debug variable definition */
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <gst/gst.h>
|
||||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
#include <videoscale.h>
|
||||
#include "videoscale.h"
|
||||
#include <string.h>
|
||||
|
||||
#include "gstvideoscale.h"
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
#include <gstvideotestsrc.h>
|
||||
#include <videotestsrc.h>
|
||||
#include "gstvideotestsrc.h"
|
||||
#include "videotestsrc.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
@ -23,8 +23,8 @@
|
|||
|
||||
/* non-GST-specific stuff */
|
||||
|
||||
#include <gstvideotestsrc.h>
|
||||
#include <videotestsrc.h>
|
||||
#include "gstvideotestsrc.h"
|
||||
#include "videotestsrc.h"
|
||||
#ifdef HAVE_LIBOIL
|
||||
#include <liboil/liboil.h>
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue