mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-16 04:32:47 +02:00
avcodec: add 64-bit signed pcm codec
This commit is contained in:
@@ -1636,6 +1636,20 @@ static const AVCodecDescriptor codec_descriptors[] = {
|
||||
.long_name = NULL_IF_CONFIG_SMALL("PCM signed 32-bit big-endian"),
|
||||
.props = AV_CODEC_PROP_LOSSLESS,
|
||||
},
|
||||
{
|
||||
.id = AV_CODEC_ID_PCM_S64LE,
|
||||
.type = AVMEDIA_TYPE_AUDIO,
|
||||
.name = "pcm_s64le",
|
||||
.long_name = NULL_IF_CONFIG_SMALL("PCM signed 64-bit little-endian"),
|
||||
.props = AV_CODEC_PROP_LOSSLESS,
|
||||
},
|
||||
{
|
||||
.id = AV_CODEC_ID_PCM_S64BE,
|
||||
.type = AVMEDIA_TYPE_AUDIO,
|
||||
.name = "pcm_s64be",
|
||||
.long_name = NULL_IF_CONFIG_SMALL("PCM signed 64-bit big-endian"),
|
||||
.props = AV_CODEC_PROP_LOSSLESS,
|
||||
},
|
||||
{
|
||||
.id = AV_CODEC_ID_PCM_U32LE,
|
||||
.type = AVMEDIA_TYPE_AUDIO,
|
||||
|
||||
Reference in New Issue
Block a user