From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id 00F734D8D5 for ; Wed, 2 Jul 2025 16:57:25 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 1792868D1AE; Wed, 2 Jul 2025 19:57:12 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id 28A1168CC70 for ; Wed, 2 Jul 2025 19:57:05 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 8C36727FFCD20; Wed, 02 Jul 2025 18:57:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1751475424; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=mxLe1ELG+VTn1BzgctWlo1P6n3gdGvc8EpPPl0+8lho=; b=QPvgXaYcJiPXteFMe/EraU283dk1Hmv/vAWYz6eVe6s7NMck45y/iaz2B/Ar4fryU6Ewmv qdX5W0Op9i8vlwgz3kPhxAoy8MXKnLyDAGLRVCPyviBzmswcyBmFY+qZrL/3M1fkbXzQVJ iuQFoPWQFVzX8FPxtOOn+0YSdzRoqddSbpvjrBI7xi3KJrRkZADPTMVWQIEOlpkL8FDlaa jhPyQAJaoWaDlgDnt6IzBWBV5DzgDa1uxvdv/W8iQi94wIY9Mpr3IM0VoTkeAiWuogd6TW qW6A3uHilDY3S4xGpUSpxf+CDspF5oVGZ5jWpVDAjPR368uWUMAKfFvMQ2YN0Q== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Wed, 2 Jul 2025 18:56:29 +0200 Message-ID: <20250702165655.1325-2-timo@rothenpieler.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250702165655.1325-1-timo@rothenpieler.org> References: <20250702165655.1325-1-timo@rothenpieler.org> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 01/18] avformat/Makefile: don't hardcode openssl for whip muxer X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Timo Rothenpieler Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --- libavformat/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/Makefile b/libavformat/Makefile index 2e73f1325e..816eb9be4a 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -639,7 +639,7 @@ OBJS-$(CONFIG_WEBM_CHUNK_MUXER) += webm_chunk.o OBJS-$(CONFIG_WEBP_MUXER) += webpenc.o OBJS-$(CONFIG_WEBVTT_DEMUXER) += webvttdec.o subtitles.o OBJS-$(CONFIG_WEBVTT_MUXER) += webvttenc.o -OBJS-$(CONFIG_WHIP_MUXER) += whip.o avc.o http.o srtp.o tls_openssl.o +OBJS-$(CONFIG_WHIP_MUXER) += whip.o avc.o http.o srtp.o OBJS-$(CONFIG_WSAUD_DEMUXER) += westwood_aud.o OBJS-$(CONFIG_WSAUD_MUXER) += westwood_audenc.o OBJS-$(CONFIG_WSD_DEMUXER) += wsddec.o rawdec.o -- 2.49.0 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".