diff options
author | Luca Abeni <lucabe72@email.it> | 2006-02-01 11:31:33 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-02-01 11:31:33 +0000 |
commit | 0a7b514f13baddda8641ab365aa2f9c218839c47 (patch) | |
tree | fbfc6d5fd2691800880de6b3884d617e4679490c /libavformat/Makefile | |
parent | b5bba45905c074d9c8a9388589fda3f48cb08437 (diff) | |
download | ffmpeg-0a7b514f13baddda8641ab365aa2f9c218839c47.tar.gz |
video4linux2 input support
patch by Luca Abeni, lucabe72 $$at$$ email $$dot$$ it
Originally committed as revision 4916 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 55abd2be2b..f4d36aefe7 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -50,6 +50,10 @@ ifeq ($(CONFIG_VIDEO4LINUX),yes) OBJS+= grab.o endif +ifeq ($(CONFIG_VIDEO4LINUX2),yes) +OBJS+= v4l2.o +endif + ifeq ($(CONFIG_BKTR),yes) OBJS+= grab_bktr.o endif |