summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2004-02-02 20:09:09 +0000
committerDavid Schleef <ds@schleef.org>2004-02-02 20:09:09 +0000
commit0d0ff109d3144dfabbf0ff68f9b427815b67da5f (patch)
tree5c2da91f009c359380c044aae8fb50672ab87808 /gst
parentd592f44068d26fec932187b9c3d5b22cb26105eb (diff)
code cleanup. Change bzero() to memset(). Remove duplicate ; at ends of lines.
Original commit message from CVS: code cleanup. Change bzero() to memset(). Remove duplicate ; at ends of lines. * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event): * ext/flac/gstflactag.c: (gst_flac_tag_chain): * ext/xvid/gstxviddec.c: (gst_xviddec_src_link): * gst-libs/gst/play/play.c: (gst_play_get_sink_element): * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain): * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect): * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect): * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps), (gst_float2_2_int_link): * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle): * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress): * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send): * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive): * gst/udp/gstudpsink.c: (gst_udpsink_init_send): * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive): * sys/v4l/gstv4lelement.c: (gst_v4lelement_init): * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture): * testsuite/gst-lint: Add tests for bzero and ;;
Diffstat (limited to 'gst')
-rw-r--r--gst/effectv/gstedge.c2
-rw-r--r--gst/effectv/gstvertigo.c2
-rw-r--r--gst/udp/gstudpsink.c2
-rw-r--r--gst/udp/gstudpsrc.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/gst/effectv/gstedge.c b/gst/effectv/gstedge.c
index 200de671..137eb358 100644
--- a/gst/effectv/gstedge.c
+++ b/gst/effectv/gstedge.c
@@ -163,7 +163,7 @@ gst_edgetv_sinkconnect (GstPad * pad, const GstCaps * caps)
g_free (filter->map);
filter->map = (guint32 *)g_malloc (filter->map_width * filter->map_height * sizeof(guint32) * 2);
- bzero(filter->map, filter->map_width * filter->map_height * sizeof(guint32) * 2);
+ memset(filter->map, 0, filter->map_width * filter->map_height * sizeof(guint32) * 2);
return gst_pad_try_set_caps (filter->srcpad, caps);
}
diff --git a/gst/effectv/gstvertigo.c b/gst/effectv/gstvertigo.c
index 2d286644..5dc97048 100644
--- a/gst/effectv/gstvertigo.c
+++ b/gst/effectv/gstvertigo.c
@@ -206,7 +206,7 @@ gst_vertigotv_sinkconnect (GstPad * pad, const GstCaps * caps)
g_free (filter->buffer);
filter->buffer = (guint32 *) g_malloc (area * 2 * sizeof(guint32));
- bzero (filter->buffer, area * 2 * sizeof(guint32));
+ memset (filter->buffer, 0, area * 2 * sizeof(guint32));
filter->current_buffer = filter->buffer;
filter->alt_buffer = filter->buffer + area;
filter->phase = 0;
diff --git a/gst/udp/gstudpsink.c b/gst/udp/gstudpsink.c
index c9a7cdc7..86238af2 100644
--- a/gst/udp/gstudpsink.c
+++ b/gst/udp/gstudpsink.c
@@ -376,7 +376,7 @@ gst_udpsink_init_send (GstUDPSink *sink)
struct in_addr addr;
guint bc_val;
- bzero (&sink->theiraddr, sizeof (sink->theiraddr));
+ memset (&sink->theiraddr, 0, sizeof (sink->theiraddr));
sink->theiraddr.sin_family = AF_INET; /* host byte order */
sink->theiraddr.sin_port = htons (sink->port); /* short, network byte order */
diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c
index 07d447ce..6aced281 100644
--- a/gst/udp/gstudpsrc.c
+++ b/gst/udp/gstudpsrc.c
@@ -353,7 +353,7 @@ gst_udpsrc_init_receive (GstUDPSrc *src)
{
guint bc_val;
gint reuse=1;
- bzero (&src->myaddr, sizeof (src->myaddr));
+ memset (&src->myaddr, 0, 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_addr.s_addr = INADDR_ANY;