Module: libav Branch: master Commit: ae85d6c9c0dcc71dd18c2afb5d15e8b033d67646
Author: Luca Barbato <[email protected]> Committer: Luca Barbato <[email protected]> Date: Tue Dec 25 09:14:59 2012 +0100 hlsenc: use the segment filename in the playlist entry Avoid calling av_get_frame_filename twice, once to generate the segment filename and once to generate the playlist. --- libavformat/hlsenc.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index e039687..7abb46d 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -85,9 +85,7 @@ static int append_entry(HLSContext *hls, uint64_t duration) if (!en) return AVERROR(ENOMEM); - av_get_frame_filename(en->name, sizeof(en->name), - av_basename(hls->basename), - hls->number -1); + av_strlcpy(en->name, av_basename(hls->avf->filename), sizeof(en->name)); en->duration = duration; en->next = NULL; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
