diff options
author | James Almer | 2017-10-21 14:57:53 -0300 |
---|---|---|
committer | James Almer | 2017-10-21 14:57:53 -0300 |
commit | 69b5ce64d2260b01e28feb81527ad282bfcdf43b (patch) | |
tree | 335027df1ff3e8e218f8daf50c86212c363821b4 /libswresample | |
parent | 4c0a8ff0610c15cb1ceeca037d6b7c8fd3b2420a (diff) | |
parent | 07a2b155949eb267cdfc7805f42c7b3375f9c7c5 (diff) |
Merge commit '07a2b155949eb267cdfc7805f42c7b3375f9c7c5'
* commit '07a2b155949eb267cdfc7805f42c7b3375f9c7c5':
Bump major versions of all libraries
A few API deprecated ~2 years ago or more are also postponed here for
varying reasons.
FF_API_LOWRES:
Since this functionality depends on AVStream->codec, i figure the two can
be removed at the same time in the next bump or so.
FF_API_AVCTX_TIMEBASE:
Couldn't get this one to work. Not just libavcodec but apparently also
libavformat and ffmpeg.c expect AVCodecContext->time_base to be set for
decoding. Upon removal some tests report a different generic stream time
base (like 1/25), and others lose packet duration values. I guess it's
somehow tied to the AVStream->codec clusterfuck.
It can be dealt with alongside FF_API_LAVF_AVCTX in the next bump.
FF_API_OLD_FILTER_OPTS_ERROR:
This one is meant to remain after FF_API_OLD_FILTER_OPTS is removed.
Its purpose is displaying the corrected command line using the new syntax
as a suggestion as part of the error message.
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libswresample')
-rw-r--r-- | libswresample/version.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswresample/version.h b/libswresample/version.h index 46424ae28a..54dfd71e42 100644 --- a/libswresample/version.h +++ b/libswresample/version.h @@ -28,8 +28,8 @@ #include "libavutil/avutil.h" -#define LIBSWRESAMPLE_VERSION_MAJOR 2 -#define LIBSWRESAMPLE_VERSION_MINOR 10 +#define LIBSWRESAMPLE_VERSION_MAJOR 3 +#define LIBSWRESAMPLE_VERSION_MINOR 0 #define LIBSWRESAMPLE_VERSION_MICRO 100 #define LIBSWRESAMPLE_VERSION_INT AV_VERSION_INT(LIBSWRESAMPLE_VERSION_MAJOR, \ |