mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
Fix double semicolons
This commit is contained in:
parent
124b6ee03c
commit
c53ba4beeb
7 changed files with 10 additions and 10 deletions
|
@ -227,7 +227,7 @@ vorbis_parse_push_headers (GstVorbisParse * parse)
|
|||
/* get the headers into the caps, passing them to vorbis as we go */
|
||||
caps = gst_caps_new_simple ("audio/x-vorbis",
|
||||
"rate", G_TYPE_INT, parse->sample_rate,
|
||||
"channels", G_TYPE_INT, parse->channels, NULL);;
|
||||
"channels", G_TYPE_INT, parse->channels, NULL);
|
||||
vorbis_parse_set_header_on_caps (parse, caps);
|
||||
GST_DEBUG_OBJECT (parse, "here are the caps: %" GST_PTR_FORMAT, caps);
|
||||
gst_pad_set_caps (parse->srcpad, caps);
|
||||
|
|
|
@ -342,7 +342,7 @@ static gboolean
|
|||
time_to_string (const GstRTSPTime * t1, const GstRTSPTime2 * t2,
|
||||
GString * string)
|
||||
{
|
||||
gboolean res = TRUE;;
|
||||
gboolean res = TRUE;
|
||||
|
||||
switch (t1->type) {
|
||||
case GST_RTSP_TIME_SECONDS:
|
||||
|
|
|
@ -1796,7 +1796,7 @@ gst_subtitle_overlay_subtitle_sink_setcaps (GstSubtitleOverlay * self,
|
|||
GstCaps * caps)
|
||||
{
|
||||
gboolean ret = TRUE;
|
||||
GstPad *target = NULL;;
|
||||
GstPad *target = NULL;
|
||||
|
||||
GST_DEBUG_OBJECT (self, "Setting caps: %" GST_PTR_FORMAT, caps);
|
||||
|
||||
|
|
|
@ -341,7 +341,7 @@ gst_volume_class_init (GstVolumeClass * klass)
|
|||
static void
|
||||
gst_volume_init (GstVolume * self)
|
||||
{
|
||||
self->mute = DEFAULT_PROP_MUTE;;
|
||||
self->mute = DEFAULT_PROP_MUTE;
|
||||
self->volume = DEFAULT_PROP_VOLUME;
|
||||
|
||||
self->tracklist = NULL;
|
||||
|
|
|
@ -154,7 +154,7 @@ unknown_format:
|
|||
{
|
||||
GST_WARNING_OBJECT (pool, "failed to get format from caps %"
|
||||
GST_PTR_FORMAT, caps);
|
||||
return FALSE;;
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -495,7 +495,7 @@ packet_lost (State * state, GstClockTime timestamp, GstClockTime duration)
|
|||
"seqnum", G_TYPE_UINT, seqnum,
|
||||
"timestamp", G_TYPE_UINT64, timestamp,
|
||||
"duration", G_TYPE_UINT64, duration,
|
||||
"late", G_TYPE_BOOLEAN, late, "retry", G_TYPE_UINT, retries, NULL));;
|
||||
"late", G_TYPE_BOOLEAN, late, "retry", G_TYPE_UINT, retries, NULL));
|
||||
|
||||
fail_unless (gst_pad_push_event (state->srcpad, event));
|
||||
}
|
||||
|
|
|
@ -1930,7 +1930,7 @@ GST_START_TEST (test_video_pack_unpack2)
|
|||
|
||||
g_array_sort (packarray, compare_result);
|
||||
for (i = 0; i < packarray->len; i++) {
|
||||
ConvertResult *res = &g_array_index (packarray, ConvertResult, i);;
|
||||
ConvertResult *res = &g_array_index (packarray, ConvertResult, i);
|
||||
|
||||
GST_DEBUG ("%f pack/sec %s->%s", res->convert_sec,
|
||||
gst_video_format_to_string (res->infmt),
|
||||
|
@ -1939,7 +1939,7 @@ GST_START_TEST (test_video_pack_unpack2)
|
|||
|
||||
g_array_sort (unpackarray, compare_result);
|
||||
for (i = 0; i < unpackarray->len; i++) {
|
||||
ConvertResult *res = &g_array_index (unpackarray, ConvertResult, i);;
|
||||
ConvertResult *res = &g_array_index (unpackarray, ConvertResult, i);
|
||||
|
||||
GST_DEBUG ("%f unpack/sec %s->%s", res->convert_sec,
|
||||
gst_video_format_to_string (res->infmt),
|
||||
|
@ -2139,7 +2139,7 @@ GST_START_TEST (test_video_color_convert)
|
|||
g_array_sort (array, compare_result);
|
||||
|
||||
for (i = 0; i < array->len; i++) {
|
||||
ConvertResult *res = &g_array_index (array, ConvertResult, i);;
|
||||
ConvertResult *res = &g_array_index (array, ConvertResult, i);
|
||||
|
||||
GST_DEBUG ("%f conversions/sec %s->%s", res->convert_sec,
|
||||
gst_video_format_to_string (res->infmt),
|
||||
|
@ -2235,7 +2235,7 @@ GST_START_TEST (test_video_size_convert)
|
|||
g_array_sort (array, compare_result);
|
||||
|
||||
for (i = 0; i < array->len; i++) {
|
||||
ConvertResult *res = &g_array_index (array, ConvertResult, i);;
|
||||
ConvertResult *res = &g_array_index (array, ConvertResult, i);
|
||||
|
||||
GST_DEBUG ("%f method %d, resize/sec %s->%s", res->convert_sec, res->method,
|
||||
gst_video_format_to_string (res->infmt),
|
||||
|
|
Loading…
Reference in a new issue