diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-21 22:05:01 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-28 01:55:40 +0200 |
commit | f09fd1c6c70505916a3d1b21530b3f71d8118688 (patch) | |
tree | 6afa15cc7017c4364bb522c1e278e6f4c71efc7e /libavcodec | |
parent | db25180e9d0fbb500459d997a05f5752768f604d (diff) | |
download | ffmpeg-f09fd1c6c70505916a3d1b21530b3f71d8118688.tar.gz |
avcodec/codec_desc: Mark MLP as not being intra-only
It has sync frames.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/codec_desc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index a06992fce8..d954f0a428 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -2764,7 +2764,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .type = AVMEDIA_TYPE_AUDIO, .name = "mlp", .long_name = NULL_IF_CONFIG_SMALL("MLP (Meridian Lossless Packing)"), - .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, + .props = AV_CODEC_PROP_LOSSLESS, }, { .id = AV_CODEC_ID_GSM_MS, |