Source code

Revision control

Copy as Markdown

Other Tools

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
---
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 6e9a0b1937..d4c59ab52b 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 2f5ff4ad3c..f2f9561a03 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"