summaryrefslogtreecommitdiff
path: root/layout
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-11-26 18:08:58 +0000
committerMoonchild <moonchild@palemoon.org>2021-11-26 18:08:58 +0000
commit4cffd541de9065c16bbe0dd2fa10e41329e6caa5 (patch)
treeeab213a29c3375b16a2398dc851ef7062c8c126d /layout
parentf9591cc1c0c314522b7df3b650a68d2c51e46c10 (diff)
downloadaura-central-4cffd541de9065c16bbe0dd2fa10e41329e6caa5.tar.gz
Issue %3014 - Part 1: Remove conditional WebRTC code
Diffstat (limited to 'layout')
-rw-r--r--layout/media/moz.build3
-rw-r--r--layout/media/symbols.def.in12
-rw-r--r--layout/media/webrtc/moz.build10
3 files changed, 0 insertions, 25 deletions
diff --git a/layout/media/moz.build b/layout/media/moz.build
index 9ea465319..74ca1332c 100644
--- a/layout/media/moz.build
+++ b/layout/media/moz.build
@@ -18,9 +18,6 @@ else:
# on Windows for them to propagate there.
Library('gkmedias')
-if CONFIG['MOZ_WEBRTC']:
- DIRS += ['webrtc']
-
if CONFIG['OS_TARGET'] == 'WINNT':
DEFFILE = 'symbols.def'
OS_LIBS += [
diff --git a/layout/media/symbols.def.in b/layout/media/symbols.def.in
index e3b164117..d21792746 100644
--- a/layout/media/symbols.def.in
+++ b/layout/media/symbols.def.in
@@ -64,10 +64,6 @@ vpx_codec_get_cx_data
vpx_codec_enc_config_default
vpx_img_alloc
vpx_codec_encode
-#ifdef MOZ_WEBRTC
-vpx_codec_set_frame_buffer_functions
-vpx_codec_enc_init_multi_ver
-#endif
#ifdef MOZ_AV1
aom_codec_av1_dx
aom_codec_dec_init_ver
@@ -188,14 +184,6 @@ opus_encoder_destroy
opus_encoder_ctl
opus_encode
opus_encode_float
-#ifdef MOZ_WEBRTC
-opus_custom_mode_create
-opus_packet_parse
-opus_packet_get_nb_channels
-downmix_int
-tonality_analysis_init
-run_analysis
-#endif
#ifndef MOZ_NATIVE_PNG
MOZ_APNG_get_first_frame_is_hidden
MOZ_APNG_get_next_frame_blend_op
diff --git a/layout/media/webrtc/moz.build b/layout/media/webrtc/moz.build
deleted file mode 100644
index 5c4cb2cee..000000000
--- a/layout/media/webrtc/moz.build
+++ /dev/null
@@ -1,10 +0,0 @@
-# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-with Files('**'):
- BUG_COMPONENT = ('Core', 'WebRTC')
-
-Library('webrtc')
-FINAL_LIBRARY = 'xul'