From 3cd616a0c95853411f6ab23ce797f696dc38abe7 Mon Sep 17 00:00:00 2001 From: James Almer Date: Thu, 20 Jul 2017 00:30:19 -0300 Subject: [PATCH] avdevice: make ff_reverse available on shared builds Should fix compilation failures introduced by 9b937958907daaddade139c36ce33c6eac269631. --- libavdevice/Makefile | 1 + libavdevice/reverse.c | 1 + 2 files changed, 2 insertions(+) create mode 100644 libavdevice/reverse.c 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"