summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-03-19 04:10:05 +0000
committerAndy Wingo <wingo@pobox.com>2002-03-19 04:10:05 +0000
commitd6258153e0aa7d3fe89a31acd3e57b9c13de4464 (patch)
tree92fd06f31c13bf0eee35395bfcef45ba6166c0d8 /gst
parent0f1d7549324aa62357580b1b35e61bec6b6482ab (diff)
removal of //-style comments don't link plugins to core libs -- the versioning is done internally to the plugins with...
Original commit message from CVS: * removal of //-style comments * don't link plugins to core libs -- the versioning is done internally to the plugins with the plugin_info struct, and symbol resolution is lazy, so we can always know if a plugin can be loaded by the plugin_info data. in theory.
Diffstat (limited to 'gst')
-rw-r--r--gst/auparse/Makefile.am2
-rw-r--r--gst/auparse/gstauparse.c2
-rw-r--r--gst/avi/Makefile.am8
-rw-r--r--gst/avi/gstavidemux.c4
-rw-r--r--gst/cutter/Makefile.am2
-rw-r--r--gst/cutter/gstcutter.c16
-rw-r--r--gst/cutter/gstcutter.h2
-rw-r--r--gst/flx/Makefile.am2
-rw-r--r--gst/goom/Makefile.am2
-rw-r--r--gst/goom/filters.c32
-rw-r--r--gst/goom/goom_core.c78
-rw-r--r--gst/goom/goom_tools.h2
-rw-r--r--gst/goom/gstgoom.c8
-rw-r--r--gst/goom/lines.c10
-rw-r--r--gst/law/Makefile.am4
-rw-r--r--gst/level/Makefile.am2
-rw-r--r--gst/level/gstlevel.c4
-rw-r--r--gst/level/gstlevel.h4
-rw-r--r--gst/median/Makefile.am2
-rw-r--r--gst/monoscope/Makefile.am2
-rw-r--r--gst/smoothwave/Makefile.am2
-rw-r--r--gst/smoothwave/gstsmoothwave.c52
-rw-r--r--gst/spectrum/Makefile.am2
-rw-r--r--gst/spectrum/gstspectrum.c40
-rw-r--r--gst/udp/Makefile.am2
-rw-r--r--gst/udp/gstudpsink.c8
-rw-r--r--gst/udp/gstudpsrc.c8
-rw-r--r--gst/wavparse/Makefile.am2
-rw-r--r--gst/wavparse/gstriff.c8
-rw-r--r--gst/wavparse/gstwavparse.c6
30 files changed, 147 insertions, 171 deletions
diff --git a/gst/auparse/Makefile.am b/gst/auparse/Makefile.am
index 5b5679fd..2a902da7 100644
--- a/gst/auparse/Makefile.am
+++ b/gst/auparse/Makefile.am
@@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstauparse.la
libgstauparse_la_SOURCES = gstauparse.c
libgstauparse_la_CFLAGS = $(GST_CFLAGS)
-libgstauparse_la_LIBADD = $(GST_LIBS)
+libgstauparse_la_LIBADD =
libgstauparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstauparse.h
diff --git a/gst/auparse/gstauparse.c b/gst/auparse/gstauparse.c
index 9c1c6c7d..050ce16f 100644
--- a/gst/auparse/gstauparse.c
+++ b/gst/auparse/gstauparse.c
@@ -113,7 +113,7 @@ static void gst_auparse_init (GstAuParse *auparse);
static void gst_auparse_chain (GstPad *pad,GstBuffer *buf);
static GstElementClass *parent_class = NULL;
-//static guint gst_auparse_signals[LAST_SIGNAL] = { 0 };
+/*static guint gst_auparse_signals[LAST_SIGNAL] = { 0 }; */
GType
gst_auparse_get_type (void)
diff --git a/gst/avi/Makefile.am b/gst/avi/Makefile.am
index 2e60640b..d24d9ce6 100644
--- a/gst/avi/Makefile.am
+++ b/gst/avi/Makefile.am
@@ -20,19 +20,19 @@ noinst_HEADERS = \
#CFLAGS += -Wall -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions -ffast-math -DNDEBUG
libgstavidemux_la_CFLAGS = -O2 -ffast-math $(GST_CFLAGS)
-libgstavidemux_la_LIBADD = $(GST_LIBS)
+libgstavidemux_la_LIBADD =
libgstavidemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstavimux_la_CFLAGS = -O2 -ffast-math $(GST_CFLAGS)
-libgstavimux_la_LIBADD = $(GST_LIBS)
+libgstavimux_la_LIBADD =
libgstavimux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstaviaudiodecoder_la_CFLAGS = -O2 -ffast-math $(GST_CFLAGS)
-libgstaviaudiodecoder_la_LIBADD = $(GST_LIBS)
+libgstaviaudiodecoder_la_LIBADD =
libgstaviaudiodecoder_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstcdxaparse_la_CFLAGS = -O2 -ffast-math $(GST_CFLAGS)
-libgstcdxaparse_la_LIBADD = $(GST_LIBS)
+libgstcdxaparse_la_LIBADD =
libgstcdxaparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
EXTRA_DIST = README_win32dll README
diff --git a/gst/avi/gstavidemux.c b/gst/avi/gstavidemux.c
index b5a9aa67..6bddcfe6 100644
--- a/gst/avi/gstavidemux.c
+++ b/gst/avi/gstavidemux.c
@@ -233,7 +233,7 @@ gst_avi_demux_init (GstAviDemux *avi_demux)
avi_demux->state = GST_AVI_DEMUX_UNKNOWN;
avi_demux->num_audio_pads = 0;
avi_demux->num_video_pads = 0;
- //avi_demux->next_time = 500000;
+ /*avi_demux->next_time = 500000; */
avi_demux->next_time = 0;
avi_demux->init_audio = 0;
avi_demux->flags = 0;
@@ -803,7 +803,7 @@ gst_avidemux_process_chunk (GstAviDemux *avi_demux, guint64 *filepos,
chunkid, *chunksize);
if (avi_demux->init_audio) {
- //avi_demux->next_time += (*chunksize) * 1000000LL / avi_demux->audio_rate;
+ /*avi_demux->next_time += (*chunksize) * 1000000LL / avi_demux->audio_rate; */
avi_demux->init_audio--;
}
diff --git a/gst/cutter/Makefile.am b/gst/cutter/Makefile.am
index aca53d44..45847719 100644
--- a/gst/cutter/Makefile.am
+++ b/gst/cutter/Makefile.am
@@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstcutter.la
libgstcutter_la_SOURCES = gstcutter.c
libgstcutter_la_CFLAGS = $(GST_CFLAGS)
-libgstcutter_la_LIBADD = $(GST_LIBS)
+libgstcutter_la_LIBADD =
libgstcutter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstcutter.h filter.func
diff --git a/gst/cutter/gstcutter.c b/gst/cutter/gstcutter.c
index e14da5fe..38e93030 100644
--- a/gst/cutter/gstcutter.c
+++ b/gst/cutter/gstcutter.c
@@ -120,17 +120,17 @@ gst_cutter_class_init (GstCutterClass *klass)
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_THRESHOLD,
g_param_spec_double ("threshold", "threshold", "threshold",
- -G_MAXDOUBLE, G_MAXDOUBLE, 0.0, G_PARAM_READWRITE)); // CHECKME
+ -G_MAXDOUBLE, G_MAXDOUBLE, 0.0, G_PARAM_READWRITE)); /* CHECKME */
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_THRESHOLD_DB,
g_param_spec_double ("threshold_dB", "threshold_dB", "threshold_dB",
- -G_MAXDOUBLE, G_MAXDOUBLE, 0.0, G_PARAM_READWRITE)); // CHECKME
+ -G_MAXDOUBLE, G_MAXDOUBLE, 0.0, G_PARAM_READWRITE)); /* CHECKME */
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_RUN_LENGTH,
g_param_spec_double ("runlength", "runlength", "runlength",
- -G_MAXDOUBLE, G_MAXDOUBLE, 0.0, G_PARAM_READWRITE)); // CHECKME
+ -G_MAXDOUBLE, G_MAXDOUBLE, 0.0, G_PARAM_READWRITE)); /* CHECKME */
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_PRE_LENGTH,
g_param_spec_double ("prelength", "prelength", "prelength",
- -G_MAXDOUBLE, G_MAXDOUBLE, 0.0, G_PARAM_READWRITE)); // CHECKME
+ -G_MAXDOUBLE, G_MAXDOUBLE, 0.0, G_PARAM_READWRITE)); /* CHECKME */
gst_cutter_signals[CUT_START] =
g_signal_new ("cut_start", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST,
G_STRUCT_OFFSET (GstCutterClass, cut_start), NULL, NULL,
@@ -214,7 +214,7 @@ gst_cutter_chain (GstPad *pad, GstBuffer *buf)
/* if RMS below threshold, add buffer length to silent run length count
* if not, reset
*/
- //g_print ("DEBUG: cutter: ms %f, RMS %f\n", ms, RMS);
+ /*g_print ("DEBUG: cutter: ms %f, RMS %f\n", ms, RMS); */
if (RMS < filter->threshold_level)
filter->silent_run_length += gst_audio_length (filter->srcpad, buf);
else
@@ -234,12 +234,12 @@ gst_cutter_chain (GstPad *pad, GstBuffer *buf)
{
if (filter->silent)
{
-// g_print ("DEBUG: cutter: cut to here, turning off out\n");
+/* g_print ("DEBUG: cutter: cut to here, turning off out\n"); */
gtk_signal_emit (G_OBJECT (filter), gst_cutter_signals[CUT_STOP]);
}
else
{
-// g_print ("DEBUG: cutter: start from here, turning on out\n");
+/* g_print ("DEBUG: cutter: start from here, turning on out\n"); */
/* first of all, flush current buffer */
gtk_signal_emit (G_OBJECT (filter), gst_cutter_signals[CUT_START]);
g_print ("DEBUG: cutter: flushing buffer ");
@@ -386,7 +386,7 @@ gst_cutter_get_caps (GstPad *pad, GstCutter* filter)
GstCaps *caps = NULL;
caps = GST_PAD_CAPS (pad);
- // FIXME : Please change this to a better warning method !
+ /* FIXME : Please change this to a better warning method ! */
if (caps == NULL)
printf ("WARNING: cutter: get_caps: Could not get caps of pad !\n");
filter->width = gst_caps_get_int (caps, "width");
diff --git a/gst/cutter/gstcutter.h b/gst/cutter/gstcutter.h
index 18de8787..693d9aeb 100644
--- a/gst/cutter/gstcutter.h
+++ b/gst/cutter/gstcutter.h
@@ -24,7 +24,7 @@
#include <config.h>
#include <gst/gst.h>
-// #include <gst/meta/audioraw.h>
+/* #include <gst/meta/audioraw.h> */
#ifdef __cplusplus
diff --git a/gst/flx/Makefile.am b/gst/flx/Makefile.am
index 95d40bb9..917fb018 100644
--- a/gst/flx/Makefile.am
+++ b/gst/flx/Makefile.am
@@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstflxdec.la
libgstflxdec_la_SOURCES = gstflxdec.c flx_color.c
libgstflxdec_la_CFLAGS = $(GST_CFLAGS)
-libgstflxdec_la_LIBADD = $(GST_LIBS)
+libgstflxdec_la_LIBADD =
libgstflxdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = flx_fmt.h flx_color.h gstflxdec.h
diff --git a/gst/goom/Makefile.am b/gst/goom/Makefile.am
index 8c14c8b5..b503d3ce 100644
--- a/gst/goom/Makefile.am
+++ b/gst/goom/Makefile.am
@@ -16,7 +16,7 @@ noinst_HEADERS = filters.h goom_core.h goom_tools.h graphic.h lines.h
#CFLAGS += -Wall -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions -ffast-math -DNDEBUG
libgstgoom_la_CFLAGS = -O2 -ffast-math $(GST_CFLAGS) $(GOOM_FILTER_CFLAGS)
-libgstgoom_la_LIBADD = $(GST_LIBS)
+libgstgoom_la_LIBADD =
libgstgoom_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
EXTRA_DIST = filters.c filters_mmx.s
diff --git a/gst/goom/filters.c b/gst/goom/filters.c
index bd267957..12fcca56 100644
--- a/gst/goom/filters.c
+++ b/gst/goom/filters.c
@@ -10,7 +10,7 @@
* la vitesse est maintenant comprise dans [0..128] au lieu de [0..100]
*/
-//#define _DEBUG_PIXEL;
+/*#define _DEBUG_PIXEL; */
#include "filters.h"
#include "graphic.h"
@@ -51,8 +51,8 @@ unsigned int ppcsize4;
#endif /* PowerPC */
unsigned int *coeffs = 0, *freecoeffs = 0;
-guint32 *expix1 = 0; // pointeur exporte vers p1
-guint32 *expix2 = 0; // pointeur exporte vers p2
+guint32 *expix1 = 0; /* pointeur exporte vers p1 */
+guint32 *expix2 = 0; /* pointeur exporte vers p2 */
guint32 zoom_width;
#endif /* ASM */
@@ -70,7 +70,7 @@ static unsigned char sqrtperte = 16 ;
static int * firedec = 0 ;
-// retourne x>>s , en testant le signe de x
+/* retourne x>>s , en testant le signe de x */
inline int ShiftRight (int x, const unsigned char s)
{
if (x<0)
@@ -151,16 +151,16 @@ inline void calculatePXandPY (int x, int y, int *px, int *py)
}
}
-//#define _DEBUG
+/*#define _DEBUG */
inline void setPixelRGB(Uint *buffer, Uint x, Uint y, Color c)
{
-// buffer[ y*WIDTH + x ] = (c.r<<16)|(c.v<<8)|c.b
+/* buffer[ y*WIDTH + x ] = (c.r<<16)|(c.v<<8)|c.b */
#ifdef _DEBUG_PIXEL
if ( x+y*resolx >= resolx * resoly)
{
fprintf (stderr,"setPixel ERROR : hors du tableau... %i, %i\n", x,y) ;
- //exit (1) ;
+ /*exit (1) ; */
}
#endif
@@ -214,7 +214,7 @@ inline void getPixelRGB (Uint *buffer, Uint x, Uint y, Color *c)
c->b = *(unsigned char *)(tmp8 = (unsigned char*)(buffer + (x + y*resolx)));
c->v = *(unsigned char *)(++tmp8);
c->r = *(unsigned char *)(++tmp8);
-// *c = (Color) buffer[x+y*WIDTH] ;
+/* *c = (Color) buffer[x+y*WIDTH] ; */
#endif
}
@@ -242,7 +242,7 @@ inline void getPixelRGB_ (Uint *buffer, Uint x, Color *c)
c->b = *(unsigned char *)(tmp8 = (unsigned char*)(buffer + x));
c->v = *(unsigned char *)(++tmp8);
c->r = *(unsigned char *)(++tmp8);
-// *c = (Color) buffer[x+y*WIDTH] ;
+/* *c = (Color) buffer[x+y*WIDTH] ; */
#endif
}
@@ -255,14 +255,14 @@ void zoomFilterFastRGB (Uint *pix1,
{
static guint32 prevX = 0, prevY = 0;
- static char reverse = 0 ; //vitesse inversé..(zoom out)
- // static int perte = 100; // 100 = normal
+ static char reverse = 0 ; /*vitesse inversé..(zoom out) */
+ /* static int perte = 100; // 100 = normal */
static unsigned char pertedec = 8 ;
static char firstTime = 1;
Uint x, y;
-// static unsigned int prevX = 0, prevY = 0;
+/* static unsigned int prevX = 0, prevY = 0; */
#ifdef USE_ASM
expix1 = pix1 ;
@@ -322,7 +322,7 @@ void zoomFilterFastRGB (Uint *pix1,
if (firstTime || zf)
{
- // generation d'une table de sinus
+ /* generation d'une table de sinus */
if (firstTime)
{
unsigned short us ;
@@ -387,15 +387,15 @@ void zoomFilterFastRGB (Uint *pix1,
}
- // generation du buffer
+ /* generation du buffer */
for (y = 0 ; y < prevY ; y++)
for (x = 0; x < prevX ; x++)
{
int px,py;
unsigned char coefv,coefh;
- // calculer px et py en fonction de
- // x,y,middleX,middleY et theMode
+ /* calculer px et py en fonction de */
+ /* x,y,middleX,middleY et theMode */
calculatePXandPY (x,y,&px, &py) ;
if ((px == x << 4) && (py == y << 4))
py += 8 ;
diff --git a/gst/goom/goom_core.c b/gst/goom/goom_core.c
index 245c280e..5f243b40 100644
--- a/gst/goom/goom_core.c
+++ b/gst/goom/goom_core.c
@@ -5,7 +5,7 @@
#include "filters.h"
#include "lines.h"
-//#define VERBOSE
+/*#define VERBOSE */
#ifdef VERBOSE
#include <stdio.h>
@@ -63,21 +63,21 @@ void goom_set_resolution (guint32 resx, guint32 resy)
guint32 * goom_update (gint16 data [2][512])
{
- static int lockvar = 0 ; // pour empecher de nouveaux changements
- static int goomvar = 0 ; // boucle des gooms
- static int totalgoom = 0 ; // nombre de gooms par seconds
- static int agoom = 0 ; // un goom a eu lieu..
- static int loopvar = 0 ; // mouvement des points
- static int speedvar = 0 ; // vitesse des particules
- static int lineMode = 0 ; // l'effet lineaire a dessiner
+ static int lockvar = 0 ; /* pour empecher de nouveaux changements */
+ static int goomvar = 0 ; /* boucle des gooms */
+ static int totalgoom = 0 ; /* nombre de gooms par seconds */
+ static int agoom = 0 ; /* un goom a eu lieu.. */
+ static int loopvar = 0 ; /* mouvement des points */
+ static int speedvar = 0 ; /* vitesse des particules */
+ static int lineMode = 0 ; /* l'effet lineaire a dessiner */
guint32 * return_val;
guint32 pointWidth;
guint32 pointHeight;
- int incvar ; // volume du son
- int accelvar ; // acceleration des particules
+ int incvar ; /* volume du son */
+ int accelvar ; /* acceleration des particules */
int i ;
- float largfactor ; // elargissement de l'intervalle d'évolution des points
- static char goomlimit = 2 ; // sensibilité du goom
+ float largfactor ; /* elargissement de l'intervalle d'évolution des points */
+ static char goomlimit = 2 ; /* sensibilité du goom */
static ZoomFilterData zfd =
{
128, 8, 16,
@@ -143,26 +143,26 @@ guint32 * goom_update (gint16 data [2][512])
66.0f, 74.0f, loopvar + i * 500);
}
- // par défaut pas de changement de zoom
+ /* par défaut pas de changement de zoom */
pzfd = NULL ;
- // diminuer de 1 le temps de lockage
- // note pour ceux qui n'ont pas suivis : le lockvar permet d'empecher un
- // changement d'etat du plugins juste apres un autre changement d'etat. oki ?
+ /* diminuer de 1 le temps de lockage */
+ /* note pour ceux qui n'ont pas suivis : le lockvar permet d'empecher un */
+ /* changement d'etat du plugins juste apres un autre changement d'etat. oki ? */
if (--lockvar < 0) lockvar = 0 ;
- // temps du goom
+ /* temps du goom */
if (--agoom < 0) agoom = 0 ;
- // on verifie qu'il ne se pas un truc interressant avec le son.
+ /* on verifie qu'il ne se pas un truc interressant avec le son. */
if ((accelvar>goomlimit) || (accelvar<-goomlimit))
{
- // UN GOOM !!! YAHOO !
+ /* UN GOOM !!! YAHOO ! */
totalgoom ++ ;
- agoom = 20 ; // mais pdt 20 cycles, il n'y en aura plus.
- lineMode = (lineMode + 1)%20; // Tous les 10 gooms on change de mode lineaire
+ agoom = 20 ; /* mais pdt 20 cycles, il n'y en aura plus. */
+ lineMode = (lineMode + 1)%20; /* Tous les 10 gooms on change de mode lineaire */
- // changement eventuel de mode
+ /* changement eventuel de mode */
switch (iRAND(10))
{
case 0:
@@ -190,20 +190,20 @@ guint32 * goom_update (gint16 data [2][512])
}
}
- // tout ceci ne sera fait qu'en cas de non-blocage
+ /* tout ceci ne sera fait qu'en cas de non-blocage */
if (lockvar == 0)
{
- // reperage de goom (acceleration forte de l'acceleration du volume)
- // -> coup de boost de la vitesse si besoin..
+ /* reperage de goom (acceleration forte de l'acceleration du volume) */
+ /* -> coup de boost de la vitesse si besoin.. */
if ( (accelvar>goomlimit) || (accelvar<-goomlimit) )
{
goomvar ++ ;
- //if (goomvar % 1 == 0)
+ /*if (goomvar % 1 == 0) */
{
guint32 vtmp ;
guint32 newvit ;
newvit = STOP_SPEED - speedvar / 2 ;
- // retablir le zoom avant..
+ /* retablir le zoom avant.. */
if ((zfd.reverse) &&
(!(cycle%12)) &&
(rand ()%3==0))
@@ -218,7 +218,7 @@ guint32 * goom_update (gint16 data [2][512])
lockvar = 100;
}
- // changement de milieu..
+ /* changement de milieu.. */
switch (iRAND(20))
{
case 0:
@@ -299,7 +299,7 @@ guint32 * goom_update (gint16 data [2][512])
zfd.hPlaneEffect = iRAND (2) ? 0 : zfd.hPlaneEffect;
}
- if (newvit < zfd.vitesse) // on accelere
+ if (newvit < zfd.vitesse) /* on accelere */
{
pzfd = &zfd;
if ( ( (newvit < STOP_SPEED - 7) &&
@@ -318,7 +318,7 @@ guint32 * goom_update (gint16 data [2][512])
}
}
}
- // mode mega-lent
+ /* mode mega-lent */
if (iRAND(1000) == 0)
{
/*
@@ -333,7 +333,7 @@ guint32 * goom_update (gint16 data [2][512])
}
}
- // gros frein si la musique est calme
+ /* gros frein si la musique est calme */
if ((speedvar < 1) && (zfd.vitesse < STOP_SPEED - 4) && (cycle % 16 == 0))
{
/*
@@ -349,7 +349,7 @@ guint32 * goom_update (gint16 data [2][512])
*/
}
- // baisser regulierement la vitesse...
+ /* baisser regulierement la vitesse... */
if ( (cycle % 73 == 0) && (zfd.vitesse < STOP_SPEED - 5))
{
/*
@@ -359,7 +359,7 @@ guint32 * goom_update (gint16 data [2][512])
zfd.vitesse ++ ;
}
- // arreter de decrémenter au bout d'un certain temps
+ /* arreter de decrémenter au bout d'un certain temps */
if ((cycle % 101 == 0) && (zfd.pertedec == 7))
{
pzfd = &zfd ;
@@ -374,10 +374,10 @@ guint32 * goom_update (gint16 data [2][512])
}
#endif
- // Zoom here !
+ /* Zoom here ! */
zoomFilterFastRGB (p1, p2, pzfd, resolx, resoly) ;
- // si on est dans un goom : afficher les lignes...
+ /* si on est dans un goom : afficher les lignes... */
if (agoom > 15) goom_lines
(data,
((zfd.middleX==resolx/2) && (zfd.middleY==resoly/2) && (zfd.mode!=WATER_MODE))
@@ -389,16 +389,16 @@ guint32 * goom_update (gint16 data [2][512])
p1=p2;
p2=tmp;
- // affichage et swappage des buffers..
+ /* affichage et swappage des buffers.. */
cycle++;
- // tous les 100 cycles : vérifier si le taux de goom est correct
- // et le modifier sinon..
+ /* tous les 100 cycles : vérifier si le taux de goom est correct */
+ /* et le modifier sinon.. */
if (!(cycle%100))
{
if (totalgoom>15)
{
- // printf ("less gooms\n") ;
+ /* printf ("less gooms\n") ; */
goomlimit ++ ;
}
else
diff --git a/gst/goom/goom_tools.h b/gst/goom/goom_tools.h
index d077c0cb..e3613825 100644
--- a/gst/goom/goom_tools.h
+++ b/gst/goom/goom_tools.h
@@ -23,7 +23,7 @@ extern unsigned short rand_pos ;
rand_tab = 0;
-//#define iRAND(i) ((guint32)((float)i * RAND()/RAND_MAX))
+/*#define iRAND(i) ((guint32)((float)i * RAND()/RAND_MAX)) */
#define iRAND(i) (RAND()%i)
#endif
diff --git a/gst/goom/gstgoom.c b/gst/goom/gstgoom.c
index d03aacba..dc59feab 100644
--- a/gst/goom/gstgoom.c
+++ b/gst/goom/gstgoom.c
@@ -38,11 +38,11 @@ struct _GstGOOM {
GstPad *sinkpad,*srcpad;
GstBufferPool *peerpool;
- // the timestamp of the next frame
+ /* the timestamp of the next frame */
guint64 next_time;
gint16 datain[2][512];
- // video state
+ /* video state */
gint fps;
gint width;
gint height;
@@ -198,11 +198,11 @@ gst_goom_init (GstGOOM *goom)
goom->next_time = 0;
goom->peerpool = NULL;
- // reset the initial video state
+ /* reset the initial video state */
goom->first_buffer = TRUE;
goom->width = 320;
goom->height = 200;
- goom->fps = 25; // desired frame rate
+ goom->fps = 25; /* desired frame rate */
}
diff --git a/gst/goom/lines.c b/gst/goom/lines.c
index fbab8b1c..cadf9203 100644
--- a/gst/goom/lines.c
+++ b/gst/goom/lines.c
@@ -27,14 +27,14 @@ void goom_lines(gint16 data [2][512], unsigned int ID,unsigned int* p, guint32 p
switch (ID)
{
- case 0: // Horizontal stereo lines
+ case 0: /* Horizontal stereo lines */
{
color1 = 0x0000AA00;
color2 = 0x00AA0000;
break;
}
- case 1: // Stereo circles
+ case 1: /* Stereo circles */
{
color1 = 0x00AA33DD;
color2 = 0x00AA33DD;
@@ -55,7 +55,7 @@ void goom_lines(gint16 data [2][512], unsigned int ID,unsigned int* p, guint32 p
switch (ID)
{
- case 0: // Horizontal stereo lines
+ case 0: /* Horizontal stereo lines */
{
unsigned int i;
for (i=0;i<512;i++)
@@ -71,7 +71,7 @@ void goom_lines(gint16 data [2][512], unsigned int ID,unsigned int* p, guint32 p
break;
}
- case 1: // Stereo circles
+ case 1: /* Stereo circles */
{
float z;
unsigned int monX = resolx/2;
@@ -79,7 +79,7 @@ void goom_lines(gint16 data [2][512], unsigned int ID,unsigned int* p, guint32 p
float monY2 = resoly/2;
for (z=0;z<6.2832f; z+=1.0f/monY)
{
- // float offset1 = 128+data[1][(unsigned int)(z*81.33f)])/200000;
+ /* float offset1 = 128+data[1][(unsigned int)(z*81.33f)])/200000; */
p[ monX + (unsigned int)( (monY + ((float)resoly) * (128+data[1][(unsigned int)(z*81.33f)])/200000) * cos (z) + resolx * (unsigned int)( monY2 + (monY + ((float)resoly)*(128+data[1][(unsigned int)(z*81.33f)])/400000) * sin (z)))] = color1;
p[ monX + (unsigned int)((monY - ((float)resoly) * (128+data[0][(unsigned int)(z*81.33f)])/200000) * cos (z) + resolx * (unsigned int)( monY2 + (monY - ((float)resoly)*(128+data[0][(unsigned int)(z*81.33f)])/400000) * sin (z)))] = color2;
}
diff --git a/gst/law/Makefile.am b/gst/law/Makefile.am
index 3c914f5c..218f58bf 100644
--- a/gst/law/Makefile.am
+++ b/gst/law/Makefile.am
@@ -4,12 +4,12 @@ plugin_LTLIBRARIES = libgstalaw.la libgstmulaw.la
libgstalaw_la_SOURCES = alaw-encode.c mulaw-conversion.c alaw-conversion.c alaw-decode.c alaw.c
libgstalaw_la_CFLAGS = $(GST_CFLAGS)
-libgstalaw_la_LIBADD = $(GST_LIBS)
+libgstalaw_la_LIBADD =
libgstalaw_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstmulaw_la_SOURCES = mulaw-encode.c mulaw-conversion.c mulaw-decode.c mulaw.c
libgstmulaw_la_CFLAGS = $(GST_CFLAGS)
-libgstmulaw_la_LIBADD = $(GST_LIBS)
+libgstmulaw_la_LIBADD =
libgstmulaw_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = mulaw-conversion.h alaw-encode.h alaw-decode.h alaw-conversion.h mulaw-encode.h mulaw-decode.h
diff --git a/gst/level/Makefile.am b/gst/level/Makefile.am
index f0cd941e..8e033cc9 100644
--- a/gst/level/Makefile.am
+++ b/gst/level/Makefile.am
@@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstlevel.la
libgstlevel_la_SOURCES = gstlevel.c
libgstlevel_la_CFLAGS = $(GST_CFLAGS)
-libgstlevel_la_LIBADD = $(GST_LIBS)
+libgstlevel_la_LIBADD =
libgstlevel_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstlevel.h filter.func
diff --git a/gst/level/gstlevel.c b/gst/level/gstlevel.c
index 4b24ce81..52d58bde 100644
--- a/gst/level/gstlevel.c
+++ b/gst/level/gstlevel.c
@@ -97,7 +97,7 @@ static void inline gst_level_fast_8bit_chain (gint8* data, gint8** out_data,
guint numsamples);
static GstElementClass *parent_class = NULL;
-//static guint gst_filter_signals[LAST_SIGNAL] = { 0 };
+/*static guint gst_filter_signals[LAST_SIGNAL] = { 0 }; */
GType
gst_level_get_type(void) {
@@ -169,7 +169,7 @@ gst_level_chain (GstPad *pad,GstBuffer *buf)
caps = GST_PAD_CAPS(pad);
if (caps == NULL)
{
- // FIXME : Please change this to a better warning method !
+ /* FIXME : Please change this to a better warning method ! */
printf ("WARNING : chain : Could not get caps of pad !\n");
}
diff --git a/gst/level/gstlevel.h b/gst/level/gstlevel.h
index f9dade0a..4d4f4f5f 100644
--- a/gst/level/gstlevel.h
+++ b/gst/level/gstlevel.h
@@ -24,7 +24,7 @@
#include <config.h>
#include <gst/gst.h>
-// #include <gst/meta/audioraw.h>
+/* #include <gst/meta/audioraw.h> */
#ifdef __cplusplus
@@ -51,7 +51,7 @@ struct _GstLevel {
GstPad *sinkpad,*srcpad;
- //MetaAudioRaw meta;
+ /*MetaAudioRaw meta; */
};
diff --git a/gst/median/Makefile.am b/gst/median/Makefile.am
index 6a6d7e4e..74dcc96b 100644
--- a/gst/median/Makefile.am
+++ b/gst/median/Makefile.am
@@ -5,7 +5,7 @@ plugin_LTLIBRARIES = libgstmedian.la
libgstmedian_la_SOURCES = gstmedian.c
libgstmedian_la_CFLAGS = -O3 $(FOMIT_FRAME_POINTER) -funroll-all-loops -finline-functions -ffast-math $(GST_CFLAGS)
-libgstmedian_la_LIBADD = $(GST_LIBS)
+libgstmedian_la_LIBADD =
libgstmedian_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstmedian.h
diff --git a/gst/monoscope/Makefile.am b/gst/monoscope/Makefile.am
index 99c4b7b8..5c3bd493 100644
--- a/gst/monoscope/Makefile.am
+++ b/gst/monoscope/Makefile.am
@@ -7,6 +7,6 @@ libgstmonoscope_la_SOURCES = gstmonoscope.c monoscope.c convolve.c
noinst_HEADERS = monoscope.h convolve.h
libgstmonoscope_la_CFLAGS = -O2 -ffast-math $(GST_CFLAGS)
-libgstmonoscope_la_LIBADD = $(GST_LIBS)
+libgstmonoscope_la_LIBADD =
libgstmonoscope_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
diff --git a/gst/smoothwave/Makefile.am b/gst/smoothwave/Makefile.am
index 6f62dc8a..c6a67abc 100644
--- a/gst/smoothwave/Makefile.am
+++ b/gst/smoothwave/Makefile.am
@@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstsmoothwave.la
libgstsmoothwave_la_SOURCES = gstsmoothwave.c
libgstsmoothwave_la_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS)
-libgstsmoothwave_la_LIBADD = $(GST_LIBS) $(GTK_LIBS)
+libgstsmoothwave_la_LIBADD = $(GTK_LIBS)
libgstsmoothwave_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstsmoothwave.h
diff --git a/gst/smoothwave/gstsmoothwave.c b/gst/smoothwave/gstsmoothwave.c
index befdba1d..d6d19200 100644
--- a/gst/smoothwave/gstsmoothwave.c
+++ b/gst/smoothwave/gstsmoothwave.c
@@ -55,7 +55,7 @@ static void gst_smoothwave_get_property (GObject *object, guint prop_id, GValue
static void gst_smoothwave_chain (GstPad *pad, GstBuffer *buf);
static GstElementClass *parent_class = NULL;
-//static guint gst_smoothwave_signals[LAST_SIGNAL] = { 0 };
+/*static guint gst_smoothwave_signals[LAST_SIGNAL] = { 0 }; */
GType
@@ -92,13 +92,13 @@ gst_smoothwave_class_init (GstSmoothWaveClass *klass)
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_WIDTH,
g_param_spec_int("width","width","width",
- G_MININT,G_MAXINT,0,G_PARAM_READWRITE)); // CHECKME
+ G_MININT,G_MAXINT,0,G_PARAM_READWRITE)); /* CHECKME */
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_HEIGHT,
g_param_spec_int("height","height","height",
- G_MININT,G_MAXINT,0,G_PARAM_READWRITE)); // CHECKME
+ G_MININT,G_MAXINT,0,G_PARAM_READWRITE)); /* CHECKME */
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_WIDGET,
g_param_spec_object("widget","widget","widget",
- GTK_TYPE_WIDGET,G_PARAM_READABLE)); // CHECKME!
+ GTK_TYPE_WIDGET,G_PARAM_READABLE)); /* CHECKME! */
gobject_class->set_property = gst_smoothwave_set_property;
gobject_class->get_property = gst_smoothwave_get_property;
@@ -116,21 +116,21 @@ gst_smoothwave_init (GstSmoothWave *smoothwave)
smoothwave->srcpad = gst_pad_new("src",GST_PAD_SRC);
gst_element_add_pad(GST_ELEMENT(smoothwave),smoothwave->srcpad);
-// smoothwave->meta = NULL;
+/* smoothwave->meta = NULL; */
smoothwave->width = 512;
smoothwave->height = 256;
gdk_rgb_init();
-// gtk_widget_set_default_colormap (gdk_rgb_get_cmap());
-// gtk_widget_set_default_visual (gdk_rgb_get_visual());
+/* gtk_widget_set_default_colormap (gdk_rgb_get_cmap()); */
+/* gtk_widget_set_default_visual (gdk_rgb_get_visual()); */
-// GST_DEBUG (0,"creating palette\n");
+/* GST_DEBUG (0,"creating palette\n"); */
for (i=0;i<256;i++)
palette[i] = (i << 16) || (i << 8);
-// GST_DEBUG (0,"creating cmap\n");
+/* GST_DEBUG (0,"creating cmap\n"); */
smoothwave->cmap = gdk_rgb_cmap_new(palette,256);
-// GST_DEBUG (0,"created cmap\n");
-// gtk_widget_set_default_colormap (smoothwave->cmap);
+/* GST_DEBUG (0,"created cmap\n"); */
+/* gtk_widget_set_default_colormap (smoothwave->cmap); */
smoothwave->image = gtk_drawing_area_new();
gtk_drawing_area_size(GTK_DRAWING_AREA(smoothwave->image),
@@ -153,29 +153,29 @@ gst_smoothwave_chain (GstPad *pad, GstBuffer *buf)
g_return_if_fail(pad != NULL);
g_return_if_fail(GST_IS_PAD(pad));
g_return_if_fail(buf != NULL);
-// g_return_if_fail(GST_IS_BUFFER(buf));
+/* g_return_if_fail(GST_IS_BUFFER(buf)); */
smoothwave = GST_SMOOTHWAVE(GST_OBJECT_PARENT (pad));
/* first deal with audio metadata */
-// if (buf->meta) {
-// if (smoothwave->meta != NULL) {
-// /* FIXME: need to unref the old metadata so it goes away */
-// }
-// /* we just make a copy of the pointer */
-// smoothwave->meta = (MetaAudioRaw *)(buf->meta);
-// /* FIXME: now we have to ref the metadata so it doesn't go away */
-// }
+/* if (buf->meta) { */
+/* if (smoothwave->meta != NULL) { */
+/* /* FIXME: need to unref the old metadata so it goes away */ */
+/* } */
+/* /* we just make a copy of the pointer */ */
+/* smoothwave->meta = (MetaAudioRaw *)(buf->meta); */
+/* /* FIXME: now we have to ref the metadata so it doesn't go away */ */
+/* } */
-// g_return_if_fail(smoothwave->meta != NULL);
+/* g_return_if_fail(smoothwave->meta != NULL); */
samples = (gint16 *)GST_BUFFER_DATA(buf);
-// samplecount = buf->datasize / (smoothwave->meta->channels * sizeof(gint16));
+/* samplecount = buf->datasize / (smoothwave->meta->channels * sizeof(gint16)); */
samplecount = GST_BUFFER_SIZE(buf) / (2 * sizeof(gint16));
qheight = smoothwave->height/4;
-// GST_DEBUG (0,"traversing %d\n",smoothwave->width);
+/* GST_DEBUG (0,"traversing %d\n",smoothwave->width); */
for (i=0;i<MAX(smoothwave->width,samplecount);i++) {
gint16 y1 = (gint32)(samples[i*2] * qheight) / 32768 +
qheight;
@@ -183,7 +183,7 @@ gst_smoothwave_chain (GstPad *pad, GstBuffer *buf)
(qheight*3);
smoothwave->imagebuffer[y1*smoothwave->width + i] = 0xff;
smoothwave->imagebuffer[y2*smoothwave->width + i] = 0xff;
-// smoothwave->imagebuffer[i+(smoothwave->width*5)] = i;
+/* smoothwave->imagebuffer[i+(smoothwave->width*5)] = i; */
}
ptr = (guint32 *)smoothwave->imagebuffer;
@@ -194,7 +194,7 @@ gst_smoothwave_chain (GstPad *pad, GstBuffer *buf)
ptr++;
}
-// GST_DEBUG (0,"drawing\n");
+/* GST_DEBUG (0,"drawing\n"); */
/* GST_DEBUG (0,"gdk_draw_indexed_image(%p,%p,%d,%d,%d,%d,%s,%p,%d,%p);\n",
smoothwave->image->window,
smoothwave->image->style->fg_gc[GTK_STATE_NORMAL],
@@ -214,7 +214,7 @@ gst_smoothwave_chain (GstPad *pad, GstBuffer *buf)
GDK_RGB_DITHER_NORMAL,
smoothwave->imagebuffer,smoothwave->width);
-// gst_trace_add_entry(NULL,0,buf,"smoothwave: calculated smoothwave");
+/* gst_trace_add_entry(NULL,0,buf,"smoothwave: calculated smoothwave"); */
gst_buffer_unref(buf);
}
diff --git a/gst/spectrum/Makefile.am b/gst/spectrum/Makefile.am
index b7c8397d..acc29f09 100644
--- a/gst/spectrum/Makefile.am
+++ b/gst/spectrum/Makefile.am
@@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstspectrum.la
libgstspectrum_la_SOURCES = gstspectrum.c fix_fft.c
libgstspectrum_la_CFLAGS = $(GST_CFLAGS)
-libgstspectrum_la_LIBADD = $(GST_LIBS)
+libgstspectrum_la_LIBADD =
libgstspectrum_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstspectrum.h
diff --git a/gst/spectrum/gstspectrum.c b/gst/spectrum/gstspectrum.c
index 0821545c..55c5b6bf 100644
--- a/gst/spectrum/gstspectrum.c
+++ b/gst/spectrum/gstspectrum.c
@@ -65,7 +65,7 @@ void gst_spectrum_window(fixed fr[], int n);
static GstElementClass *parent_class = NULL;
-//static guint gst_spectrum_signals[LAST_SIGNAL] = { 0 };
+/*static guint gst_spectrum_signals[LAST_SIGNAL] = { 0 }; */
GType
gst_spectrum_get_type (void)
@@ -99,7 +99,7 @@ gst_spectrum_class_init (GstSpectrumClass *klass)
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_WIDTH,
g_param_spec_int("width","width","width",
- G_MININT,G_MAXINT,0,G_PARAM_WRITABLE)); // CHECKME
+ G_MININT,G_MAXINT,0,G_PARAM_WRITABLE)); /* CHECKME */
gobject_class->set_property = gst_spectrum_set_property;
}
@@ -151,32 +151,8 @@ gst_spectrum_chain (GstPad *pad, GstBuffer *buf)
spectrum = GST_SPECTRUM (GST_OBJECT_PARENT (pad));
- /* first deal with audio metadata */
-// FIXME
-// if (buf->meta) {
-// if (spectrum->meta != NULL) {
-// /* FIXME: need to unref the old metadata so it goes away */
-// }
-// /* we just make a copy of the pointer */
-// spectrum->meta = (MetaAudioRaw *)(buf->data);
-// /* FIXME: now we have to ref the metadata so it does go away */
-// }
-
- //g_return_if_fail(spectrum->meta != NULL);
-
- //samplecount = GST_BUFFER_SIZE(buf) /
- // (spectrum->meta->channels * sizeof(gint16));
-// samples = (gint16 *)g_malloc(buf->datasize);
-// g_return_if_fail(samples != NULL);
-// memcpy(samples,(gint16
-//*)GST_BUFFER_DATA(buf),GST_BUFFER_DATASIZE(buf));
-// gst_buffer_unref(buf);
samples = (gint16 *)GST_BUFFER_DATA(buf);
-// return;
-// spec_base = (gint) (log(samplecount) / log(2));
-// if (spec_base > 10) spec_base = 10;
-// spec_len = (gint) pow(2, spec_base);
spec_base = 8;
spec_len = 1024;
@@ -186,12 +162,12 @@ gst_spectrum_chain (GstPad *pad, GstBuffer *buf)
g_return_if_fail(loud != NULL);
memset(im,0,spec_len * sizeof(gint16));
- //if (spectrum->meta->channels == 2) {
+ /*if (spectrum->meta->channels == 2) { */
re = g_malloc(spec_len * sizeof(gint16));
for (i=0;i<spec_len;i++)
re[i] = (samples[(i*2)] + samples[(i*2)+1]) >> 1;
- //} else
- // re = samples;
+ /*} else */
+ /* re = samples; */
gst_spectrum_window(re,spec_len);
gst_spectrum_fix_fft(re,im,spec_base,FALSE);
gst_spectrum_fix_loud(loud,re,im,spec_len,0);
@@ -204,12 +180,12 @@ gst_spectrum_chain (GstPad *pad, GstBuffer *buf)
spect[i] = (loud[pos] + 60) / 2;
else
spect[i] = 0;
-// if (spect[i] > 15);
-// spect[i] = 15;
+/* if (spect[i] > 15); */
+/* spect[i] = 15; */
}
g_free(loud);
gst_buffer_unref(buf);
-// g_free(samples);
+/* g_free(samples); */
newbuf = gst_buffer_new();
g_return_if_fail(newbuf != NULL);
diff --git a/gst/udp/Makefile.am b/gst/udp/Makefile.am
index 3448ffaf..3c609930 100644
--- a/gst/udp/Makefile.am
+++ b/gst/udp/Makefile.am
@@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstudp.la
libgstudp_la_SOURCES = gstudp.c gstudpsrc.c gstudpsink.c
libgstudp_la_CFLAGS = $(GST_CFLAGS)
-libgstudp_la_LIBADD = $(GST_LIBS)
+libgstudp_la_LIBADD =
libgstudp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstudpsink.h gstudpsrc.h
diff --git a/gst/udp/gstudpsink.c b/gst/udp/gstudpsink.c
index 9d4143e2..1f42aace 100644
--- a/gst/udp/gstudpsink.c
+++ b/gst/udp/gstudpsink.c
@@ -60,7 +60,7 @@ static void gst_udpsink_get_property (GObject *object, guint prop_id,
static GstElementClass *parent_class = NULL;
-//static guint gst_udpsink_signals[LAST_SIGNAL] = { 0 };
+/*static guint gst_udpsink_signals[LAST_SIGNAL] = { 0 }; */
GType
gst_udpsink_get_type (void)
@@ -247,15 +247,15 @@ gst_udpsink_get_property (GObject *object, guint prop_id, GValue *value, GParamS
}
-// create a socket for sending to remote machine
+/* create a socket for sending to remote machine */
static gboolean
gst_udpsink_init_send (GstUDPSink *sink)
{
struct hostent *he;
bzero (&sink->theiraddr, sizeof (sink->theiraddr));
- sink->theiraddr.sin_family = AF_INET; // host byte order
- sink->theiraddr.sin_port = htons (sink->port); // short, network byte order
+ sink->theiraddr.sin_family = AF_INET; /* host byte order */
+ sink->theiraddr.sin_port = htons (sink->port); /* short, network byte order */
if ((he = gethostbyname (sink->host)) == NULL) {
perror("gethostbyname");
return FALSE;
diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c
index 7bd5df83..e8219ba0 100644
--- a/gst/udp/gstudpsrc.c
+++ b/gst/udp/gstudpsrc.c
@@ -57,7 +57,7 @@ static void gst_udpsrc_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
static GstElementClass *parent_class = NULL;
-//static guint gst_udpsrc_signals[LAST_SIGNAL] = { 0 };
+/*static guint gst_udpsrc_signals[LAST_SIGNAL] = { 0 }; */
GType
gst_udpsrc_get_type (void)
@@ -230,13 +230,13 @@ gst_udpsrc_get_property (GObject *object, guint prop_id, GValue *value, GParamSp
}
}
-// create a socket for sending to remote machine
+/* create a socket for sending to remote machine */
static gboolean
gst_udpsrc_init_receive (GstUDPSrc *src)
{
bzero (&src->myaddr, sizeof (src->myaddr));
- src->myaddr.sin_family = AF_INET; // host byte order
- src->myaddr.sin_port = htons (src->port); // short, network byte order
+ src->myaddr.sin_family = AF_INET; /* host byte order */
+ src->myaddr.sin_port = htons (src->port); /* short, network byte order */
src->myaddr.sin_addr.s_addr = INADDR_ANY;
if ((src->sock = socket (AF_INET, SOCK_DGRAM, 0)) == -1) {
diff --git a/gst/wavparse/Makefile.am b/gst/wavparse/Makefile.am
index e6cfe880..060a2133 100644
--- a/gst/wavparse/Makefile.am
+++ b/gst/wavparse/Makefile.am
@@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstwavparse.la
libgstwavparse_la_SOURCES = gstwavparse.c gstriff.c
libgstwavparse_la_CFLAGS = $(GST_CFLAGS)
-libgstwavparse_la_LIBADD = $(GST_LIBS)
+libgstwavparse_la_LIBADD =
libgstwavparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstwavparse.h gstriff.h
diff --git a/gst/wavparse/gstriff.c b/gst/wavparse/gstriff.c
index d343568c..2e511cc0 100644
--- a/gst/wavparse/gstriff.c
+++ b/gst/wavparse/gstriff.c
@@ -56,7 +56,7 @@ gint gst_riff_next_buffer(GstRiff *riff,GstBuffer *buf,gulong off) {
return riff->state;
}
riff->form = words[2];
-// g_print("form is 0x%08x '%s'\n",words[2],gst_riff_id_to_fourcc(words[2]));
+/* g_print("form is 0x%08x '%s'\n",words[2],gst_riff_id_to_fourcc(words[2])); */
riff->nextlikely = 12; /* skip 'RIFF', length, and form */
}
@@ -64,14 +64,14 @@ gint gst_riff_next_buffer(GstRiff *riff,GstBuffer *buf,gulong off) {
while ((riff->nextlikely+8) < last) {
gulong *words = (gulong *)((guchar *)GST_BUFFER_DATA(buf) + riff->nextlikely);
-// g_print("next likely chunk is at offset 0x%08x\n",riff->nextlikely);
+/* g_print("next likely chunk is at offset 0x%08x\n",riff->nextlikely); */
chunk = (GstRiffChunk *)malloc(sizeof(GstRiffChunk));
g_return_val_if_fail(chunk != NULL,0);
chunk->offset = riff->nextlikely+8; /* point to the actual data */
chunk->id = words[0];
chunk->size = words[1];
-// g_print("chunk id is 0x%08x '%s' and is 0x%08x long\n",words[0],
-// gst_riff_id_to_fourcc(words[0]),words[1]);
+/* g_print("chunk id is 0x%08x '%s' and is 0x%08x long\n",words[0], */
+/* gst_riff_id_to_fourcc(words[0]),words[1]); */
riff->nextlikely += 8 + chunk->size; /* doesn't include hdr */
riff->chunks = g_list_prepend(riff->chunks,chunk);
}
diff --git a/gst/wavparse/gstwavparse.c b/gst/wavparse/gstwavparse.c
index 27ec497a..48cef707 100644
--- a/gst/wavparse/gstwavparse.c
+++ b/gst/wavparse/gstwavparse.c
@@ -97,7 +97,7 @@ enum {
};
static GstElementClass *parent_class = NULL;
-//static guint gst_wavparse_signals[LAST_SIGNAL] = { 0 };
+/*static guint gst_wavparse_signals[LAST_SIGNAL] = { 0 }; */
GType
gst_wavparse_get_type (void)
@@ -262,9 +262,9 @@ gst_wavparse_chain (GstPad *pad, GstBuffer *buf)
"parsewav_src",
"audio/raw",
"format", GST_PROPS_STRING ("int"),
- "law", GST_PROPS_INT (0), //FIXME
+ "law", GST_PROPS_INT (0), /*FIXME */
"endianness", GST_PROPS_INT (G_BYTE_ORDER),
- "signed", GST_PROPS_BOOLEAN (TRUE), //FIXME
+ "signed", GST_PROPS_BOOLEAN (TRUE), /*FIXME */
"width", GST_PROPS_INT (format->wBitsPerSample),
"depth", GST_PROPS_INT (format->wBitsPerSample),
"rate", GST_PROPS_INT (format->dwSamplesPerSec),