diff options
author | Felix Matouschek <felix@matouschek.org> | 2018-02-20 09:41:46 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-02-22 00:29:27 +0100 |
commit | 5ac3a309fddde79db1f70269fbcbd0ba4d94d30e (patch) | |
tree | fbb576204fb2d7e42ab91f220f6332f90e15b43a /libavdevice/Makefile | |
parent | ecb3d6edc3b756cc1d40b1073f244b581ef5bcfb (diff) | |
download | ffmpeg-streaming-5ac3a309fddde79db1f70269fbcbd0ba4d94d30e.zip ffmpeg-streaming-5ac3a309fddde79db1f70269fbcbd0ba4d94d30e.tar.gz |
avdevice: add android_camera indev
This commit adds an indev for Android devices on API level 24+ which
uses the Android NDK Camera2 API to capture video from builtin cameras
Signed-off-by: Felix Matouschek <felix@matouschek.org>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavdevice/Makefile')
-rw-r--r-- | libavdevice/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavdevice/Makefile b/libavdevice/Makefile index 8228d62..f11a6f2 100644 --- a/libavdevice/Makefile +++ b/libavdevice/Makefile @@ -14,6 +14,7 @@ OBJS-$(CONFIG_SHARED) += reverse.o # input/output devices OBJS-$(CONFIG_ALSA_INDEV) += alsa_dec.o alsa.o timefilter.o OBJS-$(CONFIG_ALSA_OUTDEV) += alsa_enc.o alsa.o +OBJS-$(CONFIG_ANDROID_CAMERA_INDEV) += android_camera.o OBJS-$(CONFIG_AVFOUNDATION_INDEV) += avfoundation.o OBJS-$(CONFIG_BKTR_INDEV) += bktr.o OBJS-$(CONFIG_CACA_OUTDEV) += caca.o |