diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-03-01 15:22:02 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-01 01:13:17 +0200 |
commit | ca36aa9e6b8f2fed15478245ad533fc594a35c37 (patch) | |
tree | cc5ad3fae8ea111d5f1faefb18f4833b4135d716 | |
parent | 06688e96fb9577bc7466a380bf7a14fa745208db (diff) | |
download | ffmpeg-ca36aa9e6b8f2fed15478245ad533fc594a35c37.tar.gz |
codec_desc: set lossless attribute for SGI and DPX
-rw-r--r-- | libavcodec/codec_desc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 7bcbbe01a1..f46e082926 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1127,7 +1127,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .type = AVMEDIA_TYPE_VIDEO, .name = "dpx", .long_name = NULL_IF_CONFIG_SMALL("DPX image"), - .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, + .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, }, { .id = AV_CODEC_ID_EXR, @@ -1220,7 +1220,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .type = AVMEDIA_TYPE_VIDEO, .name = "sgi", .long_name = NULL_IF_CONFIG_SMALL("SGI image"), - .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, + .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, }, { .id = AV_CODEC_ID_SP5X, |