From 561ad19a65148c6bce2bb47096a9e535901ebc09 Mon Sep 17 00:00:00 2001 From: David Hampton Date: Tue, 4 Feb 2025 16:21:28 -0500 Subject: [PATCH] Partially revert 57c5503573 tidy: Convert member functions to static. --- mythtv/libs/libmythtv/recorders/HLS/HLSStream.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mythtv/libs/libmythtv/recorders/HLS/HLSStream.h b/mythtv/libs/libmythtv/recorders/HLS/HLSStream.h index b782744227f..639f6813fa8 100644 --- a/mythtv/libs/libmythtv/recorders/HLS/HLSStream.h +++ b/mythtv/libs/libmythtv/recorders/HLS/HLSStream.h @@ -67,9 +67,9 @@ class HLSRecStream #ifdef USING_LIBCRYPTO protected: - static int Decrypt(unsigned char *ciphertext, int ciphertext_len, unsigned char *key, + int Decrypt(unsigned char *ciphertext, int ciphertext_len, unsigned char *key, unsigned char *iv, unsigned char *plaintext); - static bool DownloadKey(MythSingleDownload& downloader, + bool DownloadKey(MythSingleDownload& downloader, const QString& keypath, HLS_AES_KEY* aeskey); bool DecodeData(MythSingleDownload& downloader, const QByteArray& IV, const QString& keypath,