diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-03-23 12:45:18 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-03-29 10:00:38 +0200 |
commit | 6fe2641d6e410b7bc203138fa97e1118b411f16d (patch) | |
tree | eeac777305bc6e09bb1acc2b6e0ca74661c028c4 | |
parent | c48456166e95648719a8be8f8613f9dee98205c1 (diff) | |
download | ffmpeg-6fe2641d6e410b7bc203138fa97e1118b411f16d.tar.gz |
lavc: add profile define for DTS Express
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r-- | doc/APIchanges | 3 | ||||
-rw-r--r-- | libavcodec/avcodec.h | 1 | ||||
-rw-r--r-- | libavcodec/version.h | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index da800c678f..75eb66b4d1 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -13,6 +13,9 @@ libavutil: 2014-08-09 API changes, most recent first: +2015-xx-xx - xxxxxxx - lavc 56.22.0 + Add FF_PROFILE_DTS_EXPRESS. + 2015-xx-xx - xxxxxxx - lavu 54.10.0 Add AV_PIX_FMT_MMAL for MMAL hardware acceleration. diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index de8fc201f6..b3a1a3152c 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2647,6 +2647,7 @@ typedef struct AVCodecContext { #define FF_PROFILE_DTS_96_24 40 #define FF_PROFILE_DTS_HD_HRA 50 #define FF_PROFILE_DTS_HD_MA 60 +#define FF_PROFILE_DTS_EXPRESS 70 #define FF_PROFILE_MPEG2_422 0 #define FF_PROFILE_MPEG2_HIGH 1 diff --git a/libavcodec/version.h b/libavcodec/version.h index e99e8f98ec..f6a0b58707 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -29,7 +29,7 @@ #include "libavutil/version.h" #define LIBAVCODEC_VERSION_MAJOR 56 -#define LIBAVCODEC_VERSION_MINOR 21 +#define LIBAVCODEC_VERSION_MINOR 22 #define LIBAVCODEC_VERSION_MICRO 0 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ |