diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-08-21 17:11:43 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-08-21 17:11:43 +0200 |
commit | 24b24e14d64730ed90ae00744f091c74f30cff7a (patch) | |
tree | 3e7035c4c19c536d6e52564a30b45905aa8fb95a | |
parent | dc2d56a66b8ad8bc5b07a5cc9c0608a67d5c2ae2 (diff) | |
download | ffmpeg-24b24e14d64730ed90ae00744f091c74f30cff7a.tar.gz |
avcodec/codec_desc: mark Duck TrueMotion 2.0 Real Time as intra only
-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 1779149091..af66b35d2b 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1523,7 +1523,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .type = AVMEDIA_TYPE_VIDEO, .name = "truemotion2rt", .long_name = NULL_IF_CONFIG_SMALL("Duck TrueMotion 2.0 Real Time"), - .props = AV_CODEC_PROP_LOSSY, + .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, }, { .id = AV_CODEC_ID_M101, |