This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avformat/hls: do not limit manifest lines to 1024 chars
Fixes Ticket2976 Debuged-by: jaimeMF Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer
11 years ago
parent
a072acb108
commit
21a2b97365
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/hls.c
+ 1
- 1
libavformat/hls.c
View File
@@ -212,7 +212,7 @@ static int parse_playlist(HLSContext *c, const char *url,
uint8_t iv[16] = "";
int has_iv = 0;
char key[MAX_URL_SIZE] = "";
char line[
1024
];
char line[
MAX_URL_SIZE
];
const char *ptr;
int close_in = 0;
Write
Preview
Loading…
Cancel
Save