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
commit
21a2b97365
1 changed files with 1 additions and 1 deletions
  1. +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;



Loading…
Cancel
Save