diff options
author | James Almer <jamrial@gmail.com> | 2020-05-21 12:20:11 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-05-21 12:32:15 -0300 |
commit | 13b1bbff0be1eeb9471bd5eb9911da15f4b4ac50 (patch) | |
tree | 152a297b607546016227b25071d02a84b79eec84 /libavcodec/librsvgdec.c | |
parent | cbb1760afab867bf269e4c4f5b7bb63b8c58abc7 (diff) | |
download | ffmpeg-13b1bbff0be1eeb9471bd5eb9911da15f4b4ac50.tar.gz |
avcodec: deprecate Lossless and Intra Only encoder capabilites
Both are codec properties and not encoder capabilities. The relevant
AVCodecDescriptor.props flags exist for this purpose.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/librsvgdec.c')
-rw-r--r-- | libavcodec/librsvgdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/librsvgdec.c b/libavcodec/librsvgdec.c index 6697785026..e9a181d092 100644 --- a/libavcodec/librsvgdec.c +++ b/libavcodec/librsvgdec.c @@ -125,6 +125,6 @@ AVCodec ff_librsvg_decoder = { .id = AV_CODEC_ID_SVG, .decode = librsvg_decode_frame, .priv_data_size = sizeof(LibRSVGContext), - .capabilities = AV_CODEC_CAP_LOSSLESS | AV_CODEC_CAP_DR1, + .capabilities = AV_CODEC_CAP_DR1, .wrapper_name = "librsvg", }; |