Re: [FFmpeg-devel] [PATCH v2] avformat/hls: clean up duplicate option fields

2018-04-16 Thread Steven Liu
> On 17 Apr 2018, at 03:02, Richard Shaffer wrote: > > On Fri, Apr 13, 2018 at 5:14 PM, wrote: > >> From: Richard Shaffer >> >> The HLSContext struct contains fields which duplicate the data stored in >> the >> avio_opts field. This change removes those fields in favor of avio_opts, >> and

Re: [FFmpeg-devel] [PATCH v2] avformat/hls: clean up duplicate option fields

2018-04-16 Thread Richard Shaffer
On Fri, Apr 13, 2018 at 5:14 PM, wrote: > From: Richard Shaffer > > The HLSContext struct contains fields which duplicate the data stored in > the > avio_opts field. This change removes those fields in favor of avio_opts, > and > updates the code accordingly. > --- > The original patch caused th

[FFmpeg-devel] [PATCH v2] avformat/hls: clean up duplicate option fields

2018-04-13 Thread rshaffer
From: Richard Shaffer The HLSContext struct contains fields which duplicate the data stored in the avio_opts field. This change removes those fields in favor of avio_opts, and updates the code accordingly. --- The original patch caused the buffer pointed to by new_cookies in open_url to be leaked