mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: deprecate AV_CODEC_ID_VOXWARE and introduce AV_CODEC_ID_METASOUND instead Conflicts: libavcodec/avcodec.h libavcodec/codec_desc.c libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
e4eab2d9bd
@ -419,7 +419,9 @@ enum AVCodecID {
|
||||
AV_CODEC_ID_MLP,
|
||||
AV_CODEC_ID_GSM_MS, /* as found in WAV */
|
||||
AV_CODEC_ID_ATRAC3,
|
||||
#if FF_API_VOXWARE
|
||||
AV_CODEC_ID_VOXWARE,
|
||||
#endif
|
||||
AV_CODEC_ID_APE,
|
||||
AV_CODEC_ID_NELLYMOSER,
|
||||
AV_CODEC_ID_MUSEPACK8,
|
||||
@ -451,6 +453,7 @@ enum AVCodecID {
|
||||
AV_CODEC_ID_OPUS_DEPRECATED,
|
||||
AV_CODEC_ID_COMFORT_NOISE,
|
||||
AV_CODEC_ID_TAK_DEPRECATED,
|
||||
AV_CODEC_ID_METASOUND,
|
||||
AV_CODEC_ID_FFWAVESYNTH = MKBETAG('F','F','W','S'),
|
||||
AV_CODEC_ID_SONIC = MKBETAG('S','O','N','C'),
|
||||
AV_CODEC_ID_SONIC_LS = MKBETAG('S','O','N','L'),
|
||||
|
@ -2132,6 +2132,7 @@ static const AVCodecDescriptor codec_descriptors[] = {
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Atrac 3 (Adaptive TRansform Acoustic Coding 3)"),
|
||||
.props = AV_CODEC_PROP_LOSSY,
|
||||
},
|
||||
#if FF_API_VOXWARE
|
||||
{
|
||||
.id = AV_CODEC_ID_VOXWARE,
|
||||
.type = AVMEDIA_TYPE_AUDIO,
|
||||
@ -2139,6 +2140,7 @@ static const AVCodecDescriptor codec_descriptors[] = {
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Voxware RT29 Metasound"),
|
||||
.props = AV_CODEC_PROP_LOSSY,
|
||||
},
|
||||
#endif
|
||||
{
|
||||
.id = AV_CODEC_ID_APE,
|
||||
.type = AVMEDIA_TYPE_AUDIO,
|
||||
@ -2388,6 +2390,13 @@ static const AVCodecDescriptor codec_descriptors[] = {
|
||||
.long_name = NULL_IF_CONFIG_SMALL("TAK (Tom's lossless Audio Kompressor)"),
|
||||
.props = AV_CODEC_PROP_LOSSLESS,
|
||||
},
|
||||
{
|
||||
.id = AV_CODEC_ID_METASOUND,
|
||||
.type = AVMEDIA_TYPE_AUDIO,
|
||||
.name = "metasound",
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Voxware MetaSound"),
|
||||
.props = AV_CODEC_PROP_LOSSY,
|
||||
},
|
||||
{
|
||||
.id = AV_CODEC_ID_EVRC,
|
||||
.type = AVMEDIA_TYPE_AUDIO,
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "libavutil/avutil.h"
|
||||
|
||||
#define LIBAVCODEC_VERSION_MAJOR 55
|
||||
#define LIBAVCODEC_VERSION_MINOR 22
|
||||
#define LIBAVCODEC_VERSION_MINOR 23
|
||||
#define LIBAVCODEC_VERSION_MICRO 100
|
||||
|
||||
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
||||
@ -97,5 +97,8 @@
|
||||
#ifndef FF_API_BUFS_VDPAU
|
||||
#define FF_API_BUFS_VDPAU (LIBAVCODEC_VERSION_MAJOR < 56)
|
||||
#endif
|
||||
#ifndef FF_API_VOXWARE
|
||||
#define FF_API_VOXWARE (LIBAVCODEC_VERSION_MAJOR < 56)
|
||||
#endif
|
||||
|
||||
#endif /* AVCODEC_VERSION_H */
|
||||
|
@ -384,7 +384,7 @@ const AVCodecTag ff_codec_wav_tags[] = {
|
||||
/* rogue format number */
|
||||
{ AV_CODEC_ID_ADPCM_IMA_DK3, 0x0062 },
|
||||
{ AV_CODEC_ID_ADPCM_IMA_WAV, 0x0069 },
|
||||
{ AV_CODEC_ID_VOXWARE, 0x0075 },
|
||||
{ AV_CODEC_ID_METASOUND, 0x0075 },
|
||||
{ AV_CODEC_ID_AAC, 0x00ff },
|
||||
{ AV_CODEC_ID_SIPR, 0x0130 },
|
||||
{ AV_CODEC_ID_WMAV1, 0x0160 },
|
||||
|
Loading…
Reference in New Issue
Block a user