rtsp fixes

This commit is contained in:
Alfonso Gamboa
2022-05-07 01:23:49 -07:00
parent cea324226e
commit 26af3aa7bc
23 changed files with 899 additions and 24 deletions

View File

@@ -0,0 +1,11 @@
# libcallback.so
CC = /openmiko/build/mips-gcc472-glibc216-64bit/bin/mips-linux-uclibc-gnu-gcc
CFLAGS = -fPIC -std=gnu99 -shared -ldl -ltinyalsa -lm -pthread
CC_SRCS = video_callback.c audio_callback.c jpeg.c setlinebuf.c mmc_format.c curl.c freopen.c opendir.c remove.c motor.c command.c gmtime_r.c wait_motion.c irled.c audio_play.c
TARGET = libcallback.so
all: ${TARGET}
${TARGET}: ${CC_SRCS}
${CC} ${CFLAGS} -o ${TARGET} ${CC_SRCS}