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 D311542A0F for ; Thu, 11 Aug 2022 07:07:11 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id A2F1668B81D; Thu, 11 Aug 2022 10:07:07 +0300 (EEST) Received: from out203-205-221-210.mail.qq.com (out203-205-221-210.mail.qq.com [203.205.221.210]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id B8BCE68B72B for ; Thu, 11 Aug 2022 10:06:59 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=foxmail.com; s=s201512; t=1660201612; bh=yeNaHxBTVFrtqKqOI9r4waxZkSJP3Ln6iDrB6quHD44=; h=Subject:From:In-Reply-To:Date:Cc:References:To; b=n97giwjAwJvgCtUDnJNFO5jDhg64VOlBAO3JcXlYb+JG7dfz3hO2K5iebkV5BCA1T tBaCGiO8112DxZ8JO3cjoinusdYo34BM7hVCDrBUpfFZHmaZe38wXgmgVg86/CVneA UmkWuAmS4r7xb5Fduthq7EFKQD3M7Td2GSt6YDyE= Received: from [192.168.255.10] ([119.147.10.192]) by newxmesmtplogicsvrsza7.qq.com (NewEsmtp) with SMTP id 1B321CE3; Thu, 11 Aug 2022 15:06:51 +0800 X-QQ-mid: xmsmtpt1660201611ty6wyas0g Message-ID: X-QQ-XMAILINFO: N4CzT1PKe+qFOFPTjwSCFx7zrO611wbNxxAiV/jmVJcgvVjprwleJkMD0L/ACm 4GWUOiIkTuTbNGt6W1nCwgXbphsS/YORqQufMHj3GcI5ba9RrsICC+A5tGwBUoIMQlRm3VLY78YU 6u+ZL8vkW8DKGIC8vgCaUb/kGx8ODEnEu5fRYNbTORV/Q6uZdco0fVjBXK/6bf/zGQ0X0spVPHOl MFk12CZOB1+Pve7JnqU4ngbu9+BBsf2oGopG0lUclB9EC52KhDc2Iu9CAImYp1puanCw+7AO6MK6 ej0y/0rs89UImcLzJhAiooeStDIfMCmrU40rMKDyMMHdnOiEOmvvkGqh5fnnSJ8rzpRIVa6D7SfA ID9TmxCaotezwmvRXWkKfZ2FRqFZHoievYAqBsMthSyXwFYeVCYAxCLQ6q1FLoKxROoXn+vNUOao TP1FKenUBZXRQSVjS9WPF3yiYY+rx+Mf7Sd8p5uCrQUol4S3W/6D4oVNl6HPvv6FSZ3nSOhKFwd3 4fmyBfNqVsnO5u7oqaOqHMSPhMCfLfkd5b4QH0tEH6lHsrEWj3d7sKsH4RUZvOtiHXUULwLl+UXk qFKjoFb8Y0mc8HNitjQUu5q9ODSjwiKHPCmTQtsOwqwap6OgGlad8xZ6kVJnZX9RVbRqonpCb3ns WbhWjprYFvCOxBGmv9/co86hi2swc+dRosCuPkncJDAjAPy0+YVtuKfdMreKubPW4hpFcFFPyRAG VZBU8unLyjpiII0iL+5vqS5d9fmUIjxLHtbzWeZnIEd23zd2xlMNrekSekQMVSYxmS5FauN3E8Ll AwxySMsmFScDHtCztezIFDtGbESKCTQuH+i/p6UqMZtbf7qLv0WsiyTe4suIaIQEEWGbO1iod1rK cCCVOLcRU8vvybiqp4LsC5xBNBBvXLp8MmLFvKlrz4rUIjWZB2KLtri12CB79KxpCmijkPdfpNEc M0CCwQMpw= Mime-Version: 1.0 (Mac OS X Mail 14.0 \(3654.60.0.2.21\)) From: =?utf-8?B?InpoaWxpemhhbyjotbXlv5fnq4spIg==?= In-Reply-To: Date: Thu, 11 Aug 2022 15:06:50 +0800 X-OQ-MSGID: <937511A7-D3C2-4787-B24C-8A8EF7C0B993@foxmail.com> References: To: FFmpeg development discussions and patches X-Mailer: Apple Mail (2.3654.60.0.2.21) Subject: Re: [FFmpeg-devel] [PATCH 1/2] avformat/mov: fix frag_index.current out of sync 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: nachiket.programmer@gmail.com 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: > On Jul 31, 2022, at 1:14 AM, Zhao Zhili wrote: > > From: Zhao Zhili > > frag_index.current is used by cenc_filter, and is updated inside > mov_read_moof. It can out of sync regarding to mov_read_packet. > > Partly fix ticket #9807. > --- > libavformat/mov.c | 27 ++++++++++++++++++++++++++- > 1 file changed, 26 insertions(+), 1 deletion(-) > > diff --git a/libavformat/mov.c b/libavformat/mov.c > index a09a762d91..ce12a9e4f1 100644 > --- a/libavformat/mov.c > +++ b/libavformat/mov.c > @@ -7095,6 +7095,31 @@ static int cenc_decrypt(MOVContext *c, MOVStreamContext *sc, AVEncryptionInfo *s > } > } Ping for review. By the way, there is a fate failure on patchwork which is unlikely introduced by this patchset (It happened on another patch before). So how to make patchwork rerun the fate test without resending the patch again? _______________________________________________ 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".