Browse Source

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.
tags/n1.1
Luca Barbato 13 years ago
parent
commit
ae85d6c9c0
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      libavformat/hlsenc.c

+ 1
- 3
libavformat/hlsenc.c View File

@@ -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;


Loading…
Cancel
Save