Skip to content

Commit

Permalink
rescale to smaller resolution for tld speedup/accuracy trade off. beg…
Browse files Browse the repository at this point in the history
…in muxing to webm video files using ffmpeg libraries.
  • Loading branch information
dsheeler committed Nov 26, 2016
1 parent 7fb790c commit b2ea306
Show file tree
Hide file tree
Showing 4 changed files with 763 additions and 22 deletions.
11 changes: 6 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,24 @@ all: $(PROGS)

LFLAGS = $(shell pkg-config --libs wayland-client) \
$(shell pkg-config --libs cairo) \
-lccv -lm -lpng -ljpeg
-lccv -lm -lpng -ljpeg -lswscale -lavutil -lswresample \
-lavformat -lavcodec -lpthread -ljack


LIBS =

SRCS = v4l2_wayland.c
SRCS = v4l2_wayland.c muxing.c
OBJS = $(SRCS:.c=.o)
HDRS =
HDRS = muxing.h

.SUFFIXES:

.SUFFIXES: .c

%.o : %.c
%.o : %.c ${HDRS}
$(CC) ${CFLAGS} -c $< -o $@

v4l2_wayland: v4l2_wayland.c ${OBJS}
v4l2_wayland: v4l2_wayland.c ${OBJS}
${CC} -o $@ ${OBJS} ${LFLAGS}

clean:
Expand Down
Loading

0 comments on commit b2ea306

Please sign in to comment.