Remove 'return' from void
functions
https://bugzilla.gnome.org/show_bug.cgi?id=774293
This commit is contained in:
parent
9ce939a9ae
commit
ab3c8caeed
@ -289,7 +289,7 @@ gst_ogg_stream_update_stats (GstOggStream * pad, ogg_packet * packet)
|
|||||||
if (!mappers[pad->map].get_headers_func)
|
if (!mappers[pad->map].get_headers_func)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
return mappers[pad->map].update_stats_func (pad, packet);
|
mappers[pad->map].update_stats_func (pad, packet);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* some generic functions */
|
/* some generic functions */
|
||||||
|
@ -273,7 +273,7 @@ gst_video_time_code_frames_since_daily_jam (const GstVideoTimeCode * tc)
|
|||||||
void
|
void
|
||||||
gst_video_time_code_increment_frame (GstVideoTimeCode * tc)
|
gst_video_time_code_increment_frame (GstVideoTimeCode * tc)
|
||||||
{
|
{
|
||||||
return gst_video_time_code_add_frames (tc, 1);
|
gst_video_time_code_add_frames (tc, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user