Re: [FFmpeg-devel] [PATCH 0/3] Make avio_enum_protocols const correct

2019-08-21 Thread Andreas Rheinhardt
Carl Eugen Hoyos: > Am Mi., 21. Aug. 2019 um 11:13 Uhr schrieb Andreas Rheinhardt > : >> >> Hello, >> >> this goal of this patchset is making avio_enum_protocols const correct. >> It currently ignores the distinction between const URLProtocol * >> const * and const URLProtocol ** in the line p = p

Re: [FFmpeg-devel] [PATCH 0/3] Make avio_enum_protocols const correct

2019-08-21 Thread Carl Eugen Hoyos
Am Mi., 21. Aug. 2019 um 11:13 Uhr schrieb Andreas Rheinhardt : > > Hello, > > this goal of this patchset is making avio_enum_protocols const correct. > It currently ignores the distinction between const URLProtocol * > const * and const URLProtocol ** in the line p = p ? p + 1 : url_protocols; > (

[FFmpeg-devel] [PATCH 0/3] Make avio_enum_protocols const correct

2019-08-21 Thread Andreas Rheinhardt
Hello, this goal of this patchset is making avio_enum_protocols const correct. It currently ignores the distinction between const URLProtocol * const * and const URLProtocol ** in the line p = p ? p + 1 : url_protocols; (where p is of the latter type and url_protocols is of the former (after the a