diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2017-05-08 05:02:19 +0100 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2017-05-16 11:40:44 +0100 |
commit | 5fd4cffe3214fcd11f25110673923487e54cd8b0 (patch) | |
tree | e9aac5008db1abaa4f68e8d3da56a109cb1df9a7 /libavcodec/Makefile | |
parent | f68ea92833474d7f0e493c6009eb533cb9c8bc90 (diff) | |
download | ffmpeg-5fd4cffe3214fcd11f25110673923487e54cd8b0.tar.gz |
lavc: add a librsvg rasterization library wrapper
Enables rendering of SVG images. This is possible since SVG images
still contain and specify the dimensions in pixels to which they've
been drawn to and thus enable browsers to display them without any
external data. Users can still override and generate images with
arbitrary resolutions.
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 0ec39fe2f2..3d93c05ff8 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -551,6 +551,7 @@ OBJS-$(CONFIG_SUBVIEWER1_DECODER) += textdec.o ass.o OBJS-$(CONFIG_SUBVIEWER_DECODER) += subviewerdec.o ass.o OBJS-$(CONFIG_SUNRAST_DECODER) += sunrast.o OBJS-$(CONFIG_SUNRAST_ENCODER) += sunrastenc.o +OBJS-$(CONFIG_LIBRSVG_DECODER) += librsvgdec.o OBJS-$(CONFIG_SVQ1_DECODER) += svq1dec.o svq1.o svq13.o h263data.o OBJS-$(CONFIG_SVQ1_ENCODER) += svq1enc.o svq1.o h263data.o \ h263.o ituh263enc.o |