File: 0123.patch

package info (click to toggle)
thunderbird 1%3A143.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,703,968 kB
  • sloc: cpp: 7,770,492; javascript: 5,943,842; ansic: 3,918,754; python: 1,418,263; xml: 653,354; asm: 474,045; java: 183,079; sh: 111,238; makefile: 20,410; perl: 14,359; objc: 13,059; yacc: 4,583; pascal: 3,405; lex: 1,720; ruby: 999; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 69; csh: 10
file content (35 lines) | stat: -rw-r--r-- 1,350 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
From: Michael Froman <mfroman@mozilla.com>
Date: Mon, 14 Oct 2024 18:40:00 -0500
Subject: Bug 1924098 - (fix-93c9aa1914) add missing include that upstream
 missed

Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/90a6b254783eaa91d0305d8516f27f1ca68c6772
---
 call/video_receive_stream.h | 1 +
 call/video_send_stream.h    | 1 +
 2 files changed, 2 insertions(+)

diff --git a/call/video_receive_stream.h b/call/video_receive_stream.h
index 8ae86e11e2..f07c584bed 100644
--- a/call/video_receive_stream.h
+++ b/call/video_receive_stream.h
@@ -25,6 +25,7 @@
 #include "modules/rtp_rtcp/include/rtp_rtcp_defines.h"
 #include "api/crypto/crypto_options.h"
 #include "api/crypto/frame_decryptor_interface.h"
+#include "api/crypto/frame_encryptor_interface.h"
 #include "api/frame_transformer_interface.h"
 #include "api/rtp_headers.h"
 #include "api/scoped_refptr.h"
diff --git a/call/video_send_stream.h b/call/video_send_stream.h
index 2c46bb4641..3b766fe605 100644
--- a/call/video_send_stream.h
+++ b/call/video_send_stream.h
@@ -21,6 +21,7 @@
 #include "api/adaptation/resource.h"
 #include "api/call/transport.h"
 #include "api/crypto/crypto_options.h"
+#include "api/crypto/frame_encryptor_interface.h"
 #include "api/frame_transformer_interface.h"
 #include "api/rtp_parameters.h"
 #include "api/rtp_sender_setparameters_callback.h"