Skip to content

Commit 0738233

Browse files
committed
increase playlist size from 1024 to 8*1024;
1 parent 2ce07e6 commit 0738233

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ func decode(buf *bytes.Buffer, strict bool, customDecoders []CustomDecoder) (Pla
193193
wv := new(WV)
194194

195195
master = NewMasterPlaylist()
196-
media, err = NewMediaPlaylist(8, 1024) // Winsize for VoD will become 0, capacity auto extends
196+
media, err = NewMediaPlaylist(8, 8*1024) // Winsize for VoD will become 0, capacity auto extends
197197
if err != nil {
198198
return nil, 0, fmt.Errorf("Create media playlist failed: %s", err)
199199
}

0 commit comments

Comments
 (0)