mirror of
https://github.com/pikvm/ustreamer.git
synced 2026-03-02 05:36:31 +00:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2ad8871a54 | ||
|
|
266e210b04 | ||
|
|
0ac9f77619 | ||
|
|
c1bc1d9506 | ||
|
|
deb37986b6 | ||
|
|
ee6c555ce0 | ||
|
|
4395b8487f | ||
|
|
f622d03d1b | ||
|
|
36e6fa7b09 | ||
|
|
8cf6c66f21 |
@@ -1,7 +1,7 @@
|
|||||||
[bumpversion]
|
[bumpversion]
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
current_version = 1.23
|
current_version = 1.25
|
||||||
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?)?
|
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?)?
|
||||||
serialize =
|
serialize =
|
||||||
{major}.{minor}
|
{major}.{minor}
|
||||||
|
|||||||
6
.dockerignore
Normal file
6
.dockerignore
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# Ignore everything
|
||||||
|
*
|
||||||
|
|
||||||
|
# Allow source code
|
||||||
|
!Makefile
|
||||||
|
!src/**
|
||||||
1
Makefile
1
Makefile
@@ -37,6 +37,7 @@ endif
|
|||||||
ifneq ($(call optbool,$(WITH_GPIO)),)
|
ifneq ($(call optbool,$(WITH_GPIO)),)
|
||||||
_LIBS += -lwiringPi
|
_LIBS += -lwiringPi
|
||||||
override CFLAGS += -DWITH_GPIO
|
override CFLAGS += -DWITH_GPIO
|
||||||
|
_SRCS += $(shell ls src/gpio/*.c)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
|
|
||||||
|
|
||||||
pkgname=ustreamer
|
pkgname=ustreamer
|
||||||
pkgver=1.23
|
pkgver=1.25
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Lightweight and fast MJPG-HTTP streamer"
|
pkgdesc="Lightweight and fast MJPG-HTTP streamer"
|
||||||
url="https://github.com/pikvm/ustreamer"
|
url="https://github.com/pikvm/ustreamer"
|
||||||
license=(GPL)
|
license=(GPL)
|
||||||
arch=(i686 x86_64 armv6h armv7h)
|
arch=(i686 x86_64 armv6h armv7h aarch64)
|
||||||
depends=(libjpeg libevent libutil-linux libbsd)
|
depends=(libjpeg libevent libutil-linux libbsd)
|
||||||
# optional: raspberrypi-firmware for OMX encoder
|
# optional: raspberrypi-firmware for OMX encoder
|
||||||
# optional: wiringpi for GPIO support
|
# optional: wiringpi for GPIO support
|
||||||
|
|||||||
41
pkg/docker/Dockerfile.arm.cross
Normal file
41
pkg/docker/Dockerfile.arm.cross
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
FROM balenalib/raspberrypi3-debian:build as build
|
||||||
|
|
||||||
|
RUN ["cross-build-start"]
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends \
|
||||||
|
gcc \
|
||||||
|
libjpeg8-dev \
|
||||||
|
libbsd-dev \
|
||||||
|
libraspberrypi-dev \
|
||||||
|
wiringpi \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
WORKDIR /build/ustreamer/
|
||||||
|
COPY . .
|
||||||
|
RUN make -j5 WITH_OMX=1 WITH_GPIO=1
|
||||||
|
RUN ["cross-build-end"]
|
||||||
|
|
||||||
|
FROM balenalib/raspberrypi3-debian:run as RUN
|
||||||
|
|
||||||
|
RUN ["cross-build-start"]
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends \
|
||||||
|
libevent-2.1 \
|
||||||
|
libevent-pthreads-2.1-6 \
|
||||||
|
libjpeg8 \
|
||||||
|
uuid \
|
||||||
|
libbsd0 \
|
||||||
|
wiringpi \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
RUN ["cross-build-end"]
|
||||||
|
|
||||||
|
WORKDIR /ustreamer
|
||||||
|
COPY --from=build /build/ustreamer/ustreamer .
|
||||||
|
|
||||||
|
EXPOSE 8080
|
||||||
|
ENTRYPOINT ["./ustreamer", "--host=::"]
|
||||||
|
|
||||||
|
# vim: syntax=dockerfile
|
||||||
34
pkg/docker/Dockerfile.arm.native
Normal file
34
pkg/docker/Dockerfile.arm.native
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
FROM balenalib/raspberrypi3-debian:build as build
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends \
|
||||||
|
gcc \
|
||||||
|
libjpeg8-dev \
|
||||||
|
libbsd-dev \
|
||||||
|
libraspberrypi-dev \
|
||||||
|
wiringpi \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
WORKDIR /build/ustreamer/
|
||||||
|
COPY . .
|
||||||
|
RUN make -j5 WITH_OMX=1 WITH_GPIO=1
|
||||||
|
|
||||||
|
FROM balenalib/raspberrypi3-debian:run as RUN
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends \
|
||||||
|
libevent-2.1 \
|
||||||
|
libevent-pthreads-2.1-6 \
|
||||||
|
libjpeg8 \
|
||||||
|
uuid \
|
||||||
|
libbsd0 \
|
||||||
|
wiringpi \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
WORKDIR /ustreamer
|
||||||
|
COPY --from=build /build/ustreamer/ustreamer .
|
||||||
|
|
||||||
|
EXPOSE 8080
|
||||||
|
ENTRYPOINT ["./ustreamer", "--host=::"]
|
||||||
|
|
||||||
|
# vim: syntax=dockerfile
|
||||||
38
pkg/docker/Dockerfile.x64.native
Normal file
38
pkg/docker/Dockerfile.x64.native
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
FROM debian:buster-slim as build
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y \
|
||||||
|
ca-certificates \
|
||||||
|
make \
|
||||||
|
gcc \
|
||||||
|
git \
|
||||||
|
libevent-dev \
|
||||||
|
libjpeg62-turbo-dev \
|
||||||
|
uuid-dev \
|
||||||
|
libbsd-dev \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
WORKDIR /build/ustreamer/
|
||||||
|
COPY . .
|
||||||
|
RUN make -j5
|
||||||
|
|
||||||
|
FROM debian:buster-slim as run
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y \
|
||||||
|
ca-certificates \
|
||||||
|
libevent-2.1 \
|
||||||
|
libevent-pthreads-2.1-6 \
|
||||||
|
libjpeg62-turbo \
|
||||||
|
uuid \
|
||||||
|
libbsd0 \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
WORKDIR /ustreamer
|
||||||
|
COPY --from=build /build/ustreamer/ustreamer .
|
||||||
|
|
||||||
|
#ENV LD_LIBRARY_PATH=/opt/vc/lib
|
||||||
|
EXPOSE 8080
|
||||||
|
ENTRYPOINT ["./ustreamer", "--host=0.0.0.0"]
|
||||||
|
|
||||||
|
# vim: syntax=dockerfile
|
||||||
@@ -6,7 +6,7 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=ustreamer
|
PKG_NAME:=ustreamer
|
||||||
PKG_VERSION:=1.23
|
PKG_VERSION:=1.25
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
PKG_MAINTAINER:=Maxim Devaev <mdevaev@gmail.com>
|
PKG_MAINTAINER:=Maxim Devaev <mdevaev@gmail.com>
|
||||||
|
|
||||||
|
|||||||
@@ -23,5 +23,5 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#ifndef VERSION
|
#ifndef VERSION
|
||||||
# define VERSION "1.23"
|
# define VERSION "1.25"
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
29
src/gpio/gpio.c
Normal file
29
src/gpio/gpio.c
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
/*****************************************************************************
|
||||||
|
# #
|
||||||
|
# uStreamer - Lightweight and fast MJPG-HTTP streamer. #
|
||||||
|
# #
|
||||||
|
# Copyright (C) 2018 Maxim Devaev <mdevaev@gmail.com> #
|
||||||
|
# #
|
||||||
|
# This program is free software: you can redistribute it and/or modify #
|
||||||
|
# it under the terms of the GNU General Public License as published by #
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or #
|
||||||
|
# (at your option) any later version. #
|
||||||
|
# #
|
||||||
|
# This program is distributed in the hope that it will be useful, #
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||||
|
# GNU General Public License for more details. #
|
||||||
|
# #
|
||||||
|
# You should have received a copy of the GNU General Public License #
|
||||||
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
||||||
|
# #
|
||||||
|
*****************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
#include "gpio.h"
|
||||||
|
|
||||||
|
|
||||||
|
int gpio_pin_prog_running;
|
||||||
|
int gpio_pin_stream_online;
|
||||||
|
int gpio_pin_has_http_clients;
|
||||||
|
int gpio_pin_workers_busy_at;
|
||||||
@@ -26,14 +26,14 @@
|
|||||||
|
|
||||||
#include <wiringPi.h>
|
#include <wiringPi.h>
|
||||||
|
|
||||||
#include "tools.h"
|
#include "../tools.h"
|
||||||
#include "logging.h"
|
#include "../logging.h"
|
||||||
|
|
||||||
|
|
||||||
int gpio_pin_prog_running;
|
extern int gpio_pin_prog_running;
|
||||||
int gpio_pin_stream_online;
|
extern int gpio_pin_stream_online;
|
||||||
int gpio_pin_has_http_clients;
|
extern int gpio_pin_has_http_clients;
|
||||||
int gpio_pin_workers_busy_at;
|
extern int gpio_pin_workers_busy_at;
|
||||||
|
|
||||||
|
|
||||||
#define GPIO_INIT { \
|
#define GPIO_INIT { \
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
#include "../encoder.h"
|
#include "../encoder.h"
|
||||||
#include "../stream.h"
|
#include "../stream.h"
|
||||||
#ifdef WITH_GPIO
|
#ifdef WITH_GPIO
|
||||||
# include "../gpio.h"
|
# include "../gpio/gpio.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "unix.h"
|
#include "unix.h"
|
||||||
|
|||||||
@@ -44,7 +44,7 @@
|
|||||||
#include "stream.h"
|
#include "stream.h"
|
||||||
#include "http/server.h"
|
#include "http/server.h"
|
||||||
#ifdef WITH_GPIO
|
#ifdef WITH_GPIO
|
||||||
# include "gpio.h"
|
# include "gpio/gpio.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
#include "encoder.h"
|
#include "encoder.h"
|
||||||
#include "http/server.h"
|
#include "http/server.h"
|
||||||
#ifdef WITH_GPIO
|
#ifdef WITH_GPIO
|
||||||
# include "gpio.h"
|
# include "gpio/gpio.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
@@ -680,5 +680,5 @@ static void _help(struct device_t *dev, struct encoder_t *encoder, struct http_s
|
|||||||
printf("═════════════\n");
|
printf("═════════════\n");
|
||||||
printf(" -h|--help ─────── Print this text and exit.\n\n");
|
printf(" -h|--help ─────── Print this text and exit.\n\n");
|
||||||
printf(" -v|--version ──── Print version and exit.\n\n");
|
printf(" -v|--version ──── Print version and exit.\n\n");
|
||||||
printf(" --features ────── Print list of supporeted features.\n\n");
|
printf(" --features ────── Print list of supported features.\n\n");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
#include "device.h"
|
#include "device.h"
|
||||||
#include "encoder.h"
|
#include "encoder.h"
|
||||||
#ifdef WITH_GPIO
|
#ifdef WITH_GPIO
|
||||||
# include "gpio.h"
|
# include "gpio/gpio.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -102,7 +102,23 @@ INLINE void thread_get_name(char *name) { // Always required for logging
|
|||||||
# endif
|
# endif
|
||||||
if (retval < 0) {
|
if (retval < 0) {
|
||||||
#endif
|
#endif
|
||||||
assert(snprintf(name, MAX_THREAD_NAME, "tid=%d", (pid_t)syscall(SYS_gettid)) > 0);
|
|
||||||
|
#if defined(__linux__)
|
||||||
|
pid_t tid = syscall(SYS_gettid);
|
||||||
|
#elif defined(__FreeBSD__)
|
||||||
|
pid_t tid = syscall(SYS_thr_self);
|
||||||
|
#elif defined(__OpenBSD__)
|
||||||
|
pid_t tid = syscall(SYS_getthrid);
|
||||||
|
#elif defined(__NetBSD__)
|
||||||
|
pid_t tid = syscall(SYS__lwp_self);
|
||||||
|
#elif defined(__DragonFly__)
|
||||||
|
pid_t tid = syscall(SYS_lwp_gettid);
|
||||||
|
#else
|
||||||
|
pid_t tid = 0; // Makes cppcheck happy
|
||||||
|
# warning gettid() not implemented
|
||||||
|
#endif
|
||||||
|
assert(snprintf(name, MAX_THREAD_NAME, "tid=%d", tid) > 0);
|
||||||
|
|
||||||
#ifdef WITH_PTHREAD_NP
|
#ifdef WITH_PTHREAD_NP
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user