mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 22:16:22 +00:00
tsmuxstream: Do not try return from void function
../subprojects/gst-plugins-bad/gst/mpegtsmux/tsmux/tsmuxstream.c(1082): warning C4098: 'tsmux_stream_get_es_descrs': 'void' function returning a value
This commit is contained in:
parent
00b2b599d6
commit
1c99c37548
1 changed files with 1 additions and 1 deletions
|
@ -1079,7 +1079,7 @@ tsmux_stream_get_es_descrs (TsMuxStream * stream,
|
|||
{
|
||||
g_return_if_fail (stream->get_es_descrs != NULL);
|
||||
|
||||
return stream->get_es_descrs (stream, pmt_stream, stream->get_es_descrs_data);
|
||||
stream->get_es_descrs (stream, pmt_stream, stream->get_es_descrs_data);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue