summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/play
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
commit6e12f3b798529a20e09f1d45e607dcf2d83a0e4f (patch)
treebd2e6957ecdba840665380b618a962c041e3d98f /gst-libs/gst/play
parent71341f8293fb84dbb715f1679fbe8ea029210023 (diff)
downloadgst-plugins-bad-6e12f3b798529a20e09f1d45e607dcf2d83a0e4f.tar.gz
gst-plugins-bad-6e12f3b798529a20e09f1d45e607dcf2d83a0e4f.tar.bz2
gst-plugins-bad-6e12f3b798529a20e09f1d45e607dcf2d83a0e4f.zip
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-libs/gst/play')
-rw-r--r--gst-libs/gst/play/play.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst-libs/gst/play/play.c b/gst-libs/gst/play/play.c
index 0460890e..512b906f 100644
--- a/gst-libs/gst/play/play.c
+++ b/gst-libs/gst/play/play.c
@@ -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;
}