mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
Fix compiler warnings in all C demos
This commit is contained in:
parent
20cf2503ee
commit
2d2bc0fe0e
2 changed files with 4 additions and 10 deletions
|
@ -8,6 +8,7 @@
|
||||||
*/
|
*/
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <gst/sdp/sdp.h>
|
#include <gst/sdp/sdp.h>
|
||||||
|
#define GST_USE_UNSTABLE_API
|
||||||
#include <gst/webrtc/webrtc.h>
|
#include <gst/webrtc/webrtc.h>
|
||||||
|
|
||||||
/* For signalling */
|
/* For signalling */
|
||||||
|
@ -327,7 +328,6 @@ add_peer_to_pipeline (const gchar * peer_id, gboolean offer)
|
||||||
gchar *tmp;
|
gchar *tmp;
|
||||||
GstElement *tee, *webrtc, *q;
|
GstElement *tee, *webrtc, *q;
|
||||||
GstPad *srcpad, *sinkpad;
|
GstPad *srcpad, *sinkpad;
|
||||||
GError *error = NULL;
|
|
||||||
|
|
||||||
tmp = g_strdup_printf ("queue-%s", peer_id);
|
tmp = g_strdup_printf ("queue-%s", peer_id);
|
||||||
q = gst_element_factory_make ("queue", tmp);
|
q = gst_element_factory_make ("queue", tmp);
|
||||||
|
@ -619,7 +619,7 @@ handle_sdp_offer (const gchar * peer_id, const gchar * text)
|
||||||
ret = gst_sdp_message_new (&sdp);
|
ret = gst_sdp_message_new (&sdp);
|
||||||
g_assert_cmpint (ret, ==, GST_SDP_OK);
|
g_assert_cmpint (ret, ==, GST_SDP_OK);
|
||||||
|
|
||||||
ret = gst_sdp_message_parse_buffer (text, strlen (text), sdp);
|
ret = gst_sdp_message_parse_buffer ((guint8 *) text, strlen (text), sdp);
|
||||||
g_assert_cmpint (ret, ==, GST_SDP_OK);
|
g_assert_cmpint (ret, ==, GST_SDP_OK);
|
||||||
|
|
||||||
offer = gst_webrtc_session_description_new (GST_WEBRTC_SDP_TYPE_OFFER, sdp);
|
offer = gst_webrtc_session_description_new (GST_WEBRTC_SDP_TYPE_OFFER, sdp);
|
||||||
|
@ -659,7 +659,7 @@ handle_sdp_answer (const gchar * peer_id, const gchar * text)
|
||||||
ret = gst_sdp_message_new (&sdp);
|
ret = gst_sdp_message_new (&sdp);
|
||||||
g_assert_cmpint (ret, ==, GST_SDP_OK);
|
g_assert_cmpint (ret, ==, GST_SDP_OK);
|
||||||
|
|
||||||
ret = gst_sdp_message_parse_buffer (text, strlen (text), sdp);
|
ret = gst_sdp_message_parse_buffer ((guint8 *) text, strlen (text), sdp);
|
||||||
g_assert_cmpint (ret, ==, GST_SDP_OK);
|
g_assert_cmpint (ret, ==, GST_SDP_OK);
|
||||||
|
|
||||||
answer = gst_webrtc_session_description_new (GST_WEBRTC_SDP_TYPE_ANSWER, sdp);
|
answer = gst_webrtc_session_description_new (GST_WEBRTC_SDP_TYPE_ANSWER, sdp);
|
||||||
|
@ -700,10 +700,7 @@ handle_peer_message (const gchar * peer_id, const gchar * msg)
|
||||||
object = json_node_get_object (root);
|
object = json_node_get_object (root);
|
||||||
/* Check type of JSON message */
|
/* Check type of JSON message */
|
||||||
if (json_object_has_member (object, "sdp")) {
|
if (json_object_has_member (object, "sdp")) {
|
||||||
int ret;
|
|
||||||
GstSDPMessage *sdp;
|
|
||||||
const gchar *text, *sdp_type;
|
const gchar *text, *sdp_type;
|
||||||
GstWebRTCSessionDescription *answer;
|
|
||||||
|
|
||||||
g_assert_cmpint (app_state, >=, ROOM_JOINED);
|
g_assert_cmpint (app_state, >=, ROOM_JOINED);
|
||||||
|
|
||||||
|
@ -920,7 +917,6 @@ check_plugins (void)
|
||||||
int
|
int
|
||||||
main (int argc, char *argv[])
|
main (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
SoupSession *session;
|
|
||||||
GOptionContext *context;
|
GOptionContext *context;
|
||||||
GError *error = NULL;
|
GError *error = NULL;
|
||||||
|
|
||||||
|
|
|
@ -237,7 +237,6 @@ on_offer_created (GstPromise * promise, gpointer user_data)
|
||||||
{
|
{
|
||||||
GstWebRTCSessionDescription *offer = NULL;
|
GstWebRTCSessionDescription *offer = NULL;
|
||||||
const GstStructure *reply;
|
const GstStructure *reply;
|
||||||
gchar *desc;
|
|
||||||
|
|
||||||
g_assert_cmphex (app_state, ==, PEER_CALL_NEGOTIATING);
|
g_assert_cmphex (app_state, ==, PEER_CALL_NEGOTIATING);
|
||||||
|
|
||||||
|
@ -493,7 +492,7 @@ on_server_message (SoupWebsocketConnection * conn, SoupWebsocketDataType type,
|
||||||
ret = gst_sdp_message_new (&sdp);
|
ret = gst_sdp_message_new (&sdp);
|
||||||
g_assert_cmphex (ret, ==, GST_SDP_OK);
|
g_assert_cmphex (ret, ==, GST_SDP_OK);
|
||||||
|
|
||||||
ret = gst_sdp_message_parse_buffer (text, strlen (text), sdp);
|
ret = gst_sdp_message_parse_buffer ((guint8 *) text, strlen (text), sdp);
|
||||||
g_assert_cmphex (ret, ==, GST_SDP_OK);
|
g_assert_cmphex (ret, ==, GST_SDP_OK);
|
||||||
|
|
||||||
answer = gst_webrtc_session_description_new (GST_WEBRTC_SDP_TYPE_ANSWER,
|
answer = gst_webrtc_session_description_new (GST_WEBRTC_SDP_TYPE_ANSWER,
|
||||||
|
@ -613,7 +612,6 @@ check_plugins (void)
|
||||||
int
|
int
|
||||||
main (int argc, char *argv[])
|
main (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
SoupSession *session;
|
|
||||||
GOptionContext *context;
|
GOptionContext *context;
|
||||||
GError *error = NULL;
|
GError *error = NULL;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue