Просмотр исходного кода

avdevice: make ff_reverse available on shared builds

Should fix compilation failures introduced by 9b937958907daaddade139c36ce33c6eac269631.
James Almer 7 лет назад
Родитель
Сommit
3cd616a0c9
2 измененных файлов с 2 добавлено и 0 удалено
  1. 1 0
      libavdevice/Makefile
  2. 1 0
      libavdevice/reverse.c

+ 1 - 0
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

+ 1 - 0
libavdevice/reverse.c

@@ -0,0 +1 @@
+#include "libavutil/reverse.c"