summaryrefslogtreecommitdiff
path: root/libavcodec/sp5xdec.c
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2015-06-28 14:58:47 +0200
committerJanne Grunau <janne-libav@jannau.net>2015-07-01 12:10:25 +0200
commit007e27d363ba7d994019dc897dc9c39071bb204a (patch)
tree2ccaa7e6adcf1f6d29bad18515797e4925f44459 /libavcodec/sp5xdec.c
parenta1e2caa93e4f8102666a21222f01b74838b6497f (diff)
avcodec: add missing CODEC_CAP_DR1 to codecs using get_buffer()
Diffstat (limited to 'libavcodec/sp5xdec.c')
-rw-r--r--libavcodec/sp5xdec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/sp5xdec.c b/libavcodec/sp5xdec.c
index 08bdbc097c..ddf728f115 100644
--- a/libavcodec/sp5xdec.c
+++ b/libavcodec/sp5xdec.c
@@ -116,5 +116,6 @@ AVCodec ff_amv_decoder = {
.init = ff_mjpeg_decode_init,
.close = ff_mjpeg_decode_end,
.decode = sp5x_decode_frame,
+ .capabilities = CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
};