mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
android, mp-webrtc-sendrecv, sendonly: cleanup
webrtc-unidirectional-h264.c: removed empty lines android: removed unused var
This commit is contained in:
parent
133a1593ee
commit
8c4345da7d
3 changed files with 1 additions and 15 deletions
|
@ -280,7 +280,6 @@ on_offer_created (GstPromise * promise, WebRTC * webrtc)
|
|||
{
|
||||
GstWebRTCSessionDescription *offer = NULL;
|
||||
const GstStructure *reply;
|
||||
gchar *desc;
|
||||
|
||||
g_assert (webrtc->app_state == PEER_CALL_NEGOTIATING);
|
||||
|
||||
|
|
|
@ -404,7 +404,6 @@ incoming_call_from_peer (const gchar * peer_id)
|
|||
|
||||
#define STR(x) #x
|
||||
#define RTP_CAPS_OPUS(x) "application/x-rtp,media=audio,encoding-name=OPUS,payload=" STR(x)
|
||||
#define RTP_CAPS_VP8(x) "application/x-rtp,media=video,encoding-name=VP8,payload=" STR(x)
|
||||
|
||||
static gboolean
|
||||
start_pipeline (void)
|
||||
|
@ -902,7 +901,6 @@ check_plugins (void)
|
|||
{
|
||||
int i;
|
||||
gboolean ret;
|
||||
GstPlugin *plugin;
|
||||
GstRegistry *registry;
|
||||
const gchar *needed[] = { "opus", "nice", "webrtc", "dtls", "srtp",
|
||||
"rtpmanager", "audiotestsrc", NULL
|
||||
|
@ -911,6 +909,7 @@ check_plugins (void)
|
|||
registry = gst_registry_get ();
|
||||
ret = TRUE;
|
||||
for (i = 0; i < g_strv_length ((gchar **) needed); i++) {
|
||||
GstPlugin *plugin;
|
||||
plugin = gst_registry_find_plugin (registry, needed[i]);
|
||||
if (!plugin) {
|
||||
g_print ("Required gstreamer plugin '%s' not found\n", needed[i]);
|
||||
|
|
|
@ -11,14 +11,10 @@
|
|||
#include <json-glib/json-glib.h>
|
||||
#include <string.h>
|
||||
|
||||
|
||||
|
||||
#define RTP_PAYLOAD_TYPE "96"
|
||||
#define SOUP_HTTP_PORT 57778
|
||||
#define STUN_SERVER "stun.l.google.com:19302"
|
||||
|
||||
|
||||
|
||||
typedef struct _ReceiverEntry ReceiverEntry;
|
||||
|
||||
ReceiverEntry *create_receiver_entry (SoupWebsocketConnection * connection);
|
||||
|
@ -48,9 +44,6 @@ static gchar *get_string_from_json_object (JsonObject * object);
|
|||
|
||||
gboolean exit_sighandler (gpointer user_data);
|
||||
|
||||
|
||||
|
||||
|
||||
struct _ReceiverEntry
|
||||
{
|
||||
SoupWebsocketConnection *connection;
|
||||
|
@ -59,8 +52,6 @@ struct _ReceiverEntry
|
|||
GstElement *webrtcbin;
|
||||
};
|
||||
|
||||
|
||||
|
||||
const gchar *html_source = " \n \
|
||||
<html> \n \
|
||||
<head> \n \
|
||||
|
@ -166,9 +157,6 @@ const gchar *html_source = " \n \
|
|||
</html> \n \
|
||||
";
|
||||
|
||||
|
||||
|
||||
|
||||
ReceiverEntry *
|
||||
create_receiver_entry (SoupWebsocketConnection * connection)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue