From: Michael Froman 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 574d8cea6d..50c27e7242 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 e94be2df91..cc9c98d09c 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"