Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-07-20 06:30:19 +0300
committerJames Almer <jamrial@gmail.com>2017-07-20 06:33:29 +0300
commit3cd616a0c95853411f6ab23ce797f696dc38abe7 (patch)
treede2b5ecc0219264552291e37968372262f09a58e /libavdevice
parent12791ec5b0d3653ad2a453d20368229f53df65c4 (diff)
avdevice: make ff_reverse available on shared builds
Should fix compilation failures introduced by 9b937958907daaddade139c36ce33c6eac269631.
Diffstat (limited to 'libavdevice')
-rw-r--r--libavdevice/Makefile1
-rw-r--r--libavdevice/reverse.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/libavdevice/Makefile b/libavdevice/Makefile
index c055d6718d..1d4e9e69fe 100644
--- a/libavdevice/Makefile
+++ b/libavdevice/Makefile
@@ -9,6 +9,7 @@ OBJS = alldevices.o \
utils.o \
OBJS-$(HAVE_LIBC_MSVCRT) += file_open.o
+OBJS-$(CONFIG_SHARED) += reverse.o
# input/output devices
OBJS-$(CONFIG_ALSA_INDEV) += alsa_dec.o alsa.o timefilter.o
diff --git a/libavdevice/reverse.c b/libavdevice/reverse.c
new file mode 100644
index 0000000000..440badaf34
--- /dev/null
+++ b/libavdevice/reverse.c
@@ -0,0 +1 @@
+#include "libavutil/reverse.c"