mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
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 ;;
This commit is contained in:
parent
71341f8293
commit
6e12f3b798
6 changed files with 30 additions and 7 deletions
23
ChangeLog
23
ChangeLog
|
@ -1,3 +1,26 @@
|
|||
2004-02-02 David Schleef <ds@schleef.org>
|
||||
|
||||
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 ;;
|
||||
|
||||
2004-02-02 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
|
||||
|
|
|
@ -336,7 +336,7 @@ g_print ("out: %s\n", gst_caps_to_string (vscaps));
|
|||
return GST_PAD_LINK_REFUSED;
|
||||
|
||||
if (!gst_xviddec_setup(xviddec))
|
||||
return GST_PAD_LINK_REFUSED;;
|
||||
return GST_PAD_LINK_REFUSED;
|
||||
|
||||
return GST_PAD_LINK_OK;
|
||||
}
|
||||
|
|
|
@ -1106,15 +1106,15 @@ gst_play_get_sink_element (GstPlay *play,
|
|||
case GST_PLAY_SINK_TYPE_AUDIO:
|
||||
if (has_audio_cap)
|
||||
has_correct_type = TRUE;
|
||||
break;;
|
||||
break;
|
||||
case GST_PLAY_SINK_TYPE_VIDEO:
|
||||
if (has_video_cap)
|
||||
has_correct_type = TRUE;
|
||||
break;;
|
||||
break;
|
||||
case GST_PLAY_SINK_TYPE_ANY:
|
||||
if ((has_video_cap) || (has_audio_cap))
|
||||
has_correct_type = TRUE;
|
||||
break;;
|
||||
break;
|
||||
default:
|
||||
has_correct_type = FALSE;
|
||||
}
|
||||
|
|
|
@ -370,7 +370,7 @@ gst_mpeg2subt_chain_subtitle (GstPad *pad, GstData *_data)
|
|||
/* deal with partial frame from previous buffer */
|
||||
if (mpeg2subt->partialbuf) {
|
||||
|
||||
mpeg2subt->partialbuf = gst_buffer_merge(mpeg2subt->partialbuf, buf);;
|
||||
mpeg2subt->partialbuf = gst_buffer_merge(mpeg2subt->partialbuf, buf);
|
||||
/* and the one we received.. */
|
||||
gst_buffer_unref(buf);
|
||||
}
|
||||
|
|
|
@ -2807,7 +2807,7 @@ void RTjpeg_init_mcompress(void)
|
|||
fprintf(stderr, "RTjpeg: Could not allocate memory\n");
|
||||
exit(-1);
|
||||
}
|
||||
bzero(RTjpeg_old, ((4*RTjpeg_width*RTjpeg_height)));
|
||||
memset (RTjpeg_old, 0, ((4*RTjpeg_width*RTjpeg_height)));
|
||||
}
|
||||
|
||||
#ifdef HAVE_LIBMMX
|
||||
|
|
|
@ -213,7 +213,7 @@ gst_v4l2src_set_capture (GstV4l2Src *v4l2src,
|
|||
}
|
||||
|
||||
/* update internal info */
|
||||
return gst_v4l2src_get_capture(v4l2src);;
|
||||
return gst_v4l2src_get_capture(v4l2src);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue