mirror of https://git.ffmpeg.org/ffmpeg.git
libavcodec/: Add ID and desc for DNxUncompressed
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
37842f2caa
commit
887726a7aa
|
@ -1959,6 +1959,13 @@ static const AVCodecDescriptor codec_descriptors[] = {
|
|||
.long_name = NULL_IF_CONFIG_SMALL("LEAD MCMP"),
|
||||
.props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY,
|
||||
},
|
||||
{
|
||||
.id = AV_CODEC_ID_DNXUC,
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.name = "dnxuc",
|
||||
.long_name = NULL_IF_CONFIG_SMALL("DNxUncompressed / SMPTE RDD 50"),
|
||||
.props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS,
|
||||
},
|
||||
|
||||
/* various PCM "codecs" */
|
||||
{
|
||||
|
|
|
@ -322,6 +322,7 @@ enum AVCodecID {
|
|||
AV_CODEC_ID_RTV1,
|
||||
AV_CODEC_ID_VMIX,
|
||||
AV_CODEC_ID_LEAD,
|
||||
AV_CODEC_ID_DNXUC,
|
||||
|
||||
/* various PCM "codecs" */
|
||||
AV_CODEC_ID_FIRST_AUDIO = 0x10000, ///< A dummy id pointing at the start of audio codecs
|
||||
|
|
|
@ -31,7 +31,7 @@ const char av_codec_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
|
|||
|
||||
unsigned avcodec_version(void)
|
||||
{
|
||||
static_assert(AV_CODEC_ID_LEAD == 269 &&
|
||||
static_assert(AV_CODEC_ID_DNXUC == 270 &&
|
||||
AV_CODEC_ID_PCM_SGA == 65572 &&
|
||||
AV_CODEC_ID_ADPCM_XMD == 69683 &&
|
||||
AV_CODEC_ID_CBD2_DPCM == 81928 &&
|
||||
|
|
Loading…
Reference in New Issue