This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 6de2565b8e6f739c0e80e0acc30fb5dbe7a9dd2c Author: Andreas Rheinhardt <[email protected]> AuthorDate: Sat Feb 21 16:03:21 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue Mar 10 13:52:18 2026 +0100 avformat/rtpdec_xiph: Fix shadowing Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavformat/rtpdec_xiph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtpdec_xiph.c b/libavformat/rtpdec_xiph.c index 23924f2363..98e4db48f9 100644 --- a/libavformat/rtpdec_xiph.c +++ b/libavformat/rtpdec_xiph.c @@ -187,7 +187,7 @@ static int xiph_handle_packet(AVFormatContext *ctx, PayloadContext *data, if (fragmented == 3) { // end of xiph data packet - int ret = ff_rtp_finalize_packet(pkt, &data->fragment, st->index); + ret = ff_rtp_finalize_packet(pkt, &data->fragment, st->index); if (ret < 0) { av_log(ctx, AV_LOG_ERROR, "Error occurred when getting fragment buffer."); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
