This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository libavradio.
commit 47f25bb93765f6445abfe5d6c684b2a643de5c91 Author: Michael Niedermayer <mich...@niedermayer.cc> AuthorDate: Sat Jul 29 23:20:38 2023 +0200 Commit: Michael Niedermayer <mich...@niedermayer.cc> CommitDate: Sun Jul 30 23:11:52 2023 +0200 avradio/avformat/sdrdemux: dont use a fuction name as local variable Signed-off-by: Michael Niedermayer <mich...@niedermayer.cc> --- libavformat/sdrdemux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavformat/sdrdemux.c b/libavformat/sdrdemux.c index 3f3390049c..0e327f4860 100644 --- a/libavformat/sdrdemux.c +++ b/libavformat/sdrdemux.c @@ -1043,13 +1043,13 @@ static int demodulate_fm(SDRContext *sdr, Station *station, AVStream *st, AVPack double carrier19_i_exact; int W= 5; double dc = 0, dcw = 0; - int len2 = FFMIN(index, 2*sdr->block_size - index); + int lenmax = FFMIN(index, 2*sdr->block_size - index); av_assert0(!st || (sst == station->stream && sst->station == station)); //If only some of the bandwidth is available, just try with less - if (len2 < len && len2 > len/2) - len = len2; + if (lenmax < len && lenmax > len/2) + len = lenmax; if (index + len >= 2*sdr->block_size || index - len < 0 || _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".