Browse Source

avformat/hlsenc: set EXT-X-TARGETDURATION use lrint(EXTINF)

tags/n4.0
Karthick J Steven Liu 7 years ago
parent
commit
93a0e47876
2 changed files with 1 additions and 6 deletions
  1. +1
    -1
      libavformat/hlsenc.c
  2. +0
    -5
      libavformat/hlsplaylist.h

+ 1
- 1
libavformat/hlsenc.c View File

@@ -1235,7 +1235,7 @@ static int hls_window(AVFormatContext *s, int last, VariantStream *vs)

for (en = vs->segments; en; en = en->next) {
if (target_duration <= en->duration)
target_duration = hls_get_int_from_double(en->duration);
target_duration = lrint(en->duration);
}

vs->discontinuity_set = 0;


+ 0
- 5
libavformat/hlsplaylist.h View File

@@ -36,11 +36,6 @@ typedef enum {
PLAYLIST_TYPE_NB,
} PlaylistType;

static inline int hls_get_int_from_double(double val)
{
return (int)((val - (int)val) >= 0.001) ? (int)(val + 1) : (int)val;
}

void ff_hls_write_playlist_version(AVIOContext *out, int version);
void ff_hls_write_stream_info(AVStream *st, AVIOContext *out,
int bandwidth, char *filename);


Loading…
Cancel
Save