Commit 5edf8b11 authored by Ganesh Ajjanagadde's avatar Ganesh Ajjanagadde Committed by Michael Niedermayer

avformat/hls: correct comment for ensure_playlist()

Comment was previously slightly incorrect.
Also, it was placed in the wrong location.
Signed-off-by: 's avatarGanesh Ajjanagadde <gajjanagadde@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 5176443b
...@@ -482,7 +482,9 @@ static void handle_rendition_args(struct rendition_info *info, const char *key, ...@@ -482,7 +482,9 @@ static void handle_rendition_args(struct rendition_info *info, const char *key,
/* used by parse_playlist to allocate a new variant+playlist when the /* used by parse_playlist to allocate a new variant+playlist when the
* playlist is detected to be a Media Playlist (not Master Playlist) * playlist is detected to be a Media Playlist (not Master Playlist)
* and we have no parent Master Playlist (parsing of which would have * and we have no parent Master Playlist (parsing of which would have
* allocated the variant and playlist already) */ * allocated the variant and playlist already)
* *pls == NULL => Master Playlist or parentless Media Playlist
* *pls != NULL => parented Media Playlist, playlist+variant allocated */
static int ensure_playlist(HLSContext *c, struct playlist **pls, const char *url) static int ensure_playlist(HLSContext *c, struct playlist **pls, const char *url)
{ {
if (*pls) if (*pls)
...@@ -493,8 +495,6 @@ static int ensure_playlist(HLSContext *c, struct playlist **pls, const char *url ...@@ -493,8 +495,6 @@ static int ensure_playlist(HLSContext *c, struct playlist **pls, const char *url
return 0; return 0;
} }
/* pls = NULL => Master Playlist or parentless Media Playlist
* pls = !NULL => parented Media Playlist, playlist+variant allocated */
static int open_in(HLSContext *c, AVIOContext **in, const char *url) static int open_in(HLSContext *c, AVIOContext **in, const char *url)
{ {
AVDictionary *tmp = NULL; AVDictionary *tmp = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment