Merge commit '5a79bf0284'
* commit '5a79bf0284': PCM signed 16-bit big-endian planar decoder Conflicts: doc/general.texi libavcodec/Makefile libavcodec/allcodecs.c libavcodec/avcodec.h libavcodec/pcm.c libavcodec/version.h libavformat/nut.c See:9ba41ae63eMerged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
8e2fcd1cb4
2 changed files with 3 additions and 2 deletions
|
|
@ -358,6 +358,7 @@ enum AVCodecID {
|
|||
AV_CODEC_ID_PCM_S8_PLANAR,
|
||||
AV_CODEC_ID_PCM_S24LE_PLANAR_DEPRECATED,
|
||||
AV_CODEC_ID_PCM_S32LE_PLANAR_DEPRECATED,
|
||||
AV_CODEC_ID_PCM_S16BE_PLANAR_DEPRECATED,
|
||||
AV_CODEC_ID_PCM_S24LE_PLANAR = MKBETAG(24,'P','S','P'),
|
||||
AV_CODEC_ID_PCM_S32LE_PLANAR = MKBETAG(32,'P','S','P'),
|
||||
AV_CODEC_ID_PCM_S16BE_PLANAR = MKBETAG('P','S','P',16),
|
||||
|
|
|
|||
|
|
@ -29,8 +29,8 @@
|
|||
#include "libavutil/version.h"
|
||||
|
||||
#define LIBAVCODEC_VERSION_MAJOR 56
|
||||
#define LIBAVCODEC_VERSION_MINOR 44
|
||||
#define LIBAVCODEC_VERSION_MICRO 101
|
||||
#define LIBAVCODEC_VERSION_MINOR 45
|
||||
#define LIBAVCODEC_VERSION_MICRO 100
|
||||
|
||||
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
||||
LIBAVCODEC_VERSION_MINOR, \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue