This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 566ad7869ee3c8b6993e1f880e0a50eae18c66ac Author: Marton Balint <[email protected]> AuthorDate: Sat Apr 4 00:06:13 2026 +0200 Commit: Marton Balint <[email protected]> CommitDate: Wed May 13 22:41:23 2026 +0200 avformat/hlsenc: remove unused function parameter Signed-off-by: Marton Balint <[email protected]> --- libavformat/hlsenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index b342c85e90..33edf0eb8e 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -906,7 +906,7 @@ static HLSSegment *find_segment_by_filename(HLSSegment *segment, const char *fil } static int sls_flags_filename_process(struct AVFormatContext *s, HLSContext *hls, - VariantStream *vs, HLSSegment *en, + VariantStream *vs, double duration, int64_t pos, int64_t size) { if ((hls->flags & (HLS_SECOND_LEVEL_SEGMENT_SIZE | HLS_SECOND_LEVEL_SEGMENT_DURATION)) && @@ -1063,7 +1063,7 @@ static int hls_append_segment(struct AVFormatContext *s, HLSContext *hls, vs->avg_bitrate = (int)(8 * vs->total_size / vs->total_duration); en->var_stream_idx = vs->var_stream_idx; - ret = sls_flags_filename_process(s, hls, vs, en, duration, pos, size); + ret = sls_flags_filename_process(s, hls, vs, duration, pos, size); if (ret < 0) return ret; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
