Re: [FFmpeg-devel] [PATCH] Bump major versions of all libraries

2017-10-21 Thread James Almer
On 9/2/2017 1:23 PM, James Almer wrote: > From: Vittorio Giovara > > This disables almost everything that was deprecated at least two years ago > > Readjust the minimum API version as needed, postponing any > API-incompatible changes until the next bump. > > (cherry picked from commit 07a2b1559

Re: [FFmpeg-devel] [PATCH] Bump major versions of all libraries

2017-10-08 Thread Ivan Kalvachev
On 9/10/17, James Almer wrote: > On 9/10/2017 2:55 PM, Ivan Kalvachev wrote: >> On 9/2/17, James Almer wrote: >> [...] >>> Notes: >>> I have no way to test what effect the removal of XVMC truly has. >>> The decoders are removed but unlike libav we have hwaccels that are not >>> removed by this. S

Re: [FFmpeg-devel] [PATCH] Bump major versions of all libraries

2017-09-10 Thread James Almer
On 9/10/2017 2:55 PM, Ivan Kalvachev wrote: > On 9/2/17, James Almer wrote: > [...] >> Notes: >> I have no way to test what effect the removal of XVMC truly has. >> The decoders are removed but unlike libav we have hwaccels that are not >> removed by this. Similarly, the pixfmt is also not removed

Re: [FFmpeg-devel] [PATCH] Bump major versions of all libraries

2017-09-10 Thread Ivan Kalvachev
On 9/2/17, James Almer wrote: [...] > Notes: > I have no way to test what effect the removal of XVMC truly has. > The decoders are removed but unlike libav we have hwaccels that are not > removed by this. Similarly, the pixfmt is also not removed in our case. > Commit dcc39ee10e82833ce24aa57926c00

Re: [FFmpeg-devel] [PATCH] Bump major versions of all libraries

2017-09-04 Thread James Almer
On 9/4/2017 6:38 AM, wm4 wrote: > On Sat, 2 Sep 2017 13:23:06 -0300 > James Almer wrote: > > >> #ifndef FF_API_LAVF_KEEPSIDE_FLAG >> -#define FF_API_LAVF_KEEPSIDE_FLAG (LIBAVFORMAT_VERSION_MAJOR < 58) >> +#define FF_API_LAVF_KEEPSIDE_FLAG (LIBAVFORMAT_VERSION_MAJOR < 59) >> #endif

Re: [FFmpeg-devel] [PATCH] Bump major versions of all libraries

2017-09-04 Thread wm4
On Sat, 2 Sep 2017 13:23:06 -0300 James Almer wrote: > #ifndef FF_API_LAVF_KEEPSIDE_FLAG > -#define FF_API_LAVF_KEEPSIDE_FLAG (LIBAVFORMAT_VERSION_MAJOR < 58) > +#define FF_API_LAVF_KEEPSIDE_FLAG (LIBAVFORMAT_VERSION_MAJOR < 59) > #endif > #ifndef FF_API_OLD_ROTATE_API > -#define

[FFmpeg-devel] [PATCH] Bump major versions of all libraries

2017-09-02 Thread James Almer
From: Vittorio Giovara This disables almost everything that was deprecated at least two years ago Readjust the minimum API version as needed, postponing any API-incompatible changes until the next bump. (cherry picked from commit 07a2b155949eb267cdfc7805f42c7b3375f9c7c5) Signed-off-by: Vittorio