diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-07-07 20:02:20 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-07-08 23:40:55 +0000 |
commit | 104ea001080a3109b2e20e0fc3e4399a68e52a13 (patch) | |
tree | 6867fe1475b36daf0ecba1dc97f4693a4867d52b /libavcodec/dpx.c | |
parent | 7bc155163ec08a0302526d7e19d08c8053f932f0 (diff) | |
download | ffmpeg-104ea001080a3109b2e20e0fc3e4399a68e52a13.tar.gz |
dpx: add CODEC_CAP_DR1
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/dpx.c')
-rw-r--r-- | libavcodec/dpx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c index 76a12aa9b3..cbddfa4043 100644 --- a/libavcodec/dpx.c +++ b/libavcodec/dpx.c @@ -247,5 +247,6 @@ AVCodec ff_dpx_decoder = { .init = decode_init, .close = decode_end, .decode = decode_frame, + .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("DPX image"), }; |