Re: [FFmpeg-devel] [RFC] avformat: access AVFormatContext.filename[] filed via getter/setter.

2015-09-14 Thread Nicolas George
L'octidi 28 fructidor, an CCXXIII, Zhang Rui a écrit : > I'd like to know if this API-change could happen, since it will break > many things. It depends on the decision about ABI compatibility, that itself depends on the decision about the decision process. Assuming we will stop ABI

[FFmpeg-devel] [RFC] avformat: access AVFormatContext.filename[] filed via getter/setter.

2015-09-14 Thread Zhang Rui
URLs longer than 1024 could be truncated by AVFormatContext. The field filename[1024] should be replaced with allocated string in future. --- ffmpeg.c | 8 +++ ffmpeg_opt.c | 8 +++ ffplay.c | 20 +-

Re: [FFmpeg-devel] [RFC] avformat: access AVFormatContext.filename[] filed via getter/setter.

2015-09-14 Thread Zhang Rui
2015-09-14 17:48 GMT+08:00 Zhang Rui : > URLs longer than 1024 could be truncated by AVFormatContext. > The field filename[1024] should be replaced with allocated string in future. I'd like to know if this API-change could happen, since it will break many things. And there is