[FFmpeg-cvslog] codec_desc: set lossless attribute for SGI and DPX

Paul B Mahol git at videolan.org
Tue Apr 1 03:28:34 CEST 2014


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Mar  1 15:22:02 2013 +0000| [ca36aa9e6b8f2fed15478245ad533fc594a35c37] | committer: Vittorio Giovara

codec_desc: set lossless attribute for SGI and DPX

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ca36aa9e6b8f2fed15478245ad533fc594a35c37
---

 libavcodec/codec_desc.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c
index 7bcbbe0..f46e082 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,



More information about the ffmpeg-cvslog mailing list