summaryrefslogtreecommitdiff
path: root/libavcodec/sgidec.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-07-08 23:41:41 +0000
committerPaul B Mahol <onemda@gmail.com>2012-07-08 23:43:18 +0000
commite2a6eb8da4fca6fdc0d7f094fd65d7240fbd4c4c (patch)
tree765f1ab331e13251a52178c389e3a4215d809aa3 /libavcodec/sgidec.c
parent0f65693529decc470e3f01cb950b1864ea982c06 (diff)
downloadffmpeg-e2a6eb8da4fca6fdc0d7f094fd65d7240fbd4c4c.tar.gz
sgidec: add CODEC_CAP_DR1
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/sgidec.c')
-rw-r--r--libavcodec/sgidec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/sgidec.c b/libavcodec/sgidec.c
index ee09d69c63..88450b94ab 100644
--- a/libavcodec/sgidec.c
+++ b/libavcodec/sgidec.c
@@ -266,5 +266,6 @@ AVCodec ff_sgi_decoder = {
.init = sgi_init,
.close = sgi_end,
.decode = decode_frame,
+ .capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("SGI image"),
};