From: Rajiv Harlalka <rajivharlalka009@gmail.com>
To: FFmpeg development discussions and patches
<ffmpeg-devel@ffmpeg.org>, Pavel Koshevoy <pkoshevoy@gmail.com>
Cc: Thilo Borgmann <thilo.borgmann@mail.de>, cosmin@cosmin.at
Subject: Re: [FFmpeg-devel] [PATCH] lavfi/atempo: avoid asendcmd assertion failure
Date: Wed, 13 Mar 2024 15:25:50 +0530
Message-ID: <36cbf848-10df-4e87-ba8f-7cb7503e4820@gmail.com> (raw)
In-Reply-To: <CAJgjuoxer9iXubour=zdiD2MkoUsi1YZNvdmGRuruER9zzDLag@mail.gmail.com>
On 3/13/24 8:39 AM, Pavel Koshevoy wrote:
> On Tue, Mar 12, 2024 at 9:01 PM Pavel Koshevoy <pkoshevoy@gmail.com> wrote:
>
>> From: Rajiv Harlalka <rajivharlalka009@gmail.com>
>>
>> Check for zeros equal to the total samples early, because in
>> that case we would already be leaving the first few frames out.
>>
>> Fixes trac ticket #10692
>> ---
>> libavfilter/af_atempo.c | 18 +++++++++---------
>> 1 file changed, 9 insertions(+), 9 deletions(-)
>>
>> diff --git a/libavfilter/af_atempo.c b/libavfilter/af_atempo.c
>> index 4621b67b03..654b080e89 100644
>> --- a/libavfilter/af_atempo.c
>> +++ b/libavfilter/af_atempo.c
>> @@ -531,21 +531,21 @@ static int yae_load_frag(ATempoContext *atempo,
>> dst = frag->data;
>>
>> start = atempo->position[0] - atempo->size;
>> - zeros = 0;
>>
>> - if (frag->position[0] < start) {
>> - // what we don't have we substitute with zeros:
>> - zeros = FFMIN(start - frag->position[0], (int64_t)nsamples);
>> - av_assert0(zeros != nsamples);
>> -
>> - memset(dst, 0, zeros * atempo->stride);
>> - dst += zeros * atempo->stride;
>> - }
>> + // what we don't have we substitute with zeros:
>> + zeros =
>> + frag->position[0] < start ?
>> + FFMIN(start - frag->position[0], (int64_t)nsamples) : 0;
>>
>> if (zeros == nsamples) {
>> return 0;
>> }
>>
>> + if (frag->position[0] < start) {
>> + memset(dst, 0, zeros * atempo->stride);
>> + dst += zeros * atempo->stride;
>> + }
>> +
>> // get the remaining data from the ring buffer:
>> na = (atempo->head < atempo->tail ?
>> atempo->tail - atempo->head :
>> --
>> 2.35.3
>>
>>
> This is a reformatting of an earlier patch from Rajiv --
> https://ffmpeg.org/pipermail/ffmpeg-devel/2024-March/322946.html
> I've tested it locally -- looks good to me, feel free to apply and push.
>
Thanks for the review and reformatting. Would also check once on my end
why the reformatting was required.
Committed in 4700925d22c79988688596bda8e862ef3ff39293 .
Cheers,
Rajiv
_______________________________________________
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".
prev parent reply other threads:[~2024-03-13 9:56 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-13 3:01 Pavel Koshevoy
2024-03-13 3:09 ` Pavel Koshevoy
2024-03-13 9:55 ` Rajiv Harlalka [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=36cbf848-10df-4e87-ba8f-7cb7503e4820@gmail.com \
--to=rajivharlalka009@gmail.com \
--cc=cosmin@cosmin.at \
--cc=ffmpeg-devel@ffmpeg.org \
--cc=pkoshevoy@gmail.com \
--cc=thilo.borgmann@mail.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git