From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 5BF1442D87 for ; Fri, 8 Jul 2022 10:22:30 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id A41C668B90A; Fri, 8 Jul 2022 13:22:26 +0300 (EEST) Received: from btbn.de (btbn.de [136.243.74.85]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id D944B68B583 for ; Fri, 8 Jul 2022 13:22:20 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 87E4337B613 for ; Fri, 8 Jul 2022 12:22:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1657275740; bh=+9evZ5Q4d7dEc9Nvul9Nvl3NfzwZUboJPpy1CqAV16I=; h=Date:Subject:From:To:References:In-Reply-To; b=SX1PdZKz+W+vDDd+QOE693XdUsEDKTtz59tVBBf6LukIMfvcIGr07mpqTgmZUw8oo PzRQVyvuXQjhK/CqQL7umcTx86OTdu2pshf0F9Yg5eAvs7SHJo+RzY/fA0af3BZLRo W5FG8IGFr6kKMC4wDYkTRfsC8sdqkeRlY4Bn7T9py35uV4QdPAJ0ax6xmUG8bjQwPQ h3wFiyxs573EbI98/UGBNfarSgu/3TN+y/S0ePAsG+2Y2cQCxtpVTRgb7y1fjOeRsh iKN9BG/TUnlz9JPNlybVmI1rGxBO6qbST5yS+oA7FZVa5ZO72q3uhE30uSRlp4Bo+J DENM8a2FEZ56A== Message-ID: Date: Fri, 8 Jul 2022 12:23:14 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.0 Content-Language: en-US From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org References: <20220607113500.GU396728@pb2> <20220707204757.GV396728@pb2> <5a3163b7-e80a-0a51-6fc4-e793285cf908@gmail.com> <7e75ad2c-584e-6acc-dc15-89850c4af774@rothenpieler.org> In-Reply-To: <7e75ad2c-584e-6acc-dc15-89850c4af774@rothenpieler.org> Subject: Re: [FFmpeg-devel] FFmpeg 5.1 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 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On 08/07/2022 12:17, Timo Rothenpieler wrote: >> The lavfi changes, more specifically wrapped_avframe, still rely on >> sizeof(AVFrame) being used outside lavu. We really need to stop >> spreading its use and find a way to change this behavior. >> I have tried like two different solutions and both were rejected, so >> it's not going to be me. > > wrapped_avframe is used all over the place in lavd already. > Is that really a problem, as long as it's within another libav* library? > Given we don't support mix-matching library versions in the first place. Also, thinking about it, wrapped_avframe does not actually rely on the size of AVFrame at all. It's only set on the buffer as a purely informational thing. The only actual data in the buffer is a pointer to the frame. So more accurately, the size of the wrapped package could be sizeof(void*). _______________________________________________ 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".