[FFmpeg-devel] [PATCH 4/5] ffserver: Implement ffserver and add Makefile

2018-05-12 Thread Stephan Holljes
Signed-off-by: Stephan Holljes --- Makefile | 19 +++ ffserver.c | 520 + 2 files changed, 539 insertions(+) create mode 100644 Makefile create mode 100644 ffserver.c diff --git a/Makefile b/Makefile new file mode 100644 index

Re: [FFmpeg-devel] [PATCH 4/5] ffserver: Implement ffserver and add Makefile

2018-05-12 Thread Stephan Holljes
On Fri, May 11, 2018 at 3:05 PM, Stephan Holljes wrote: > On Fri, May 11, 2018 at 2:49 PM, Moritz Barsnick wrote: >> On Thu, May 10, 2018 at 17:41:25 +0200, Stephan Holljes wrote: >>> +ffserver: segment.o publisher.o lavfhttpd.o ffserver.c >>> + cc -g -Wall $(LAV_FLAGS) -lpthread -o ffserver

Re: [FFmpeg-devel] [PATCH 4/5] ffserver: Implement ffserver and add Makefile

2018-05-11 Thread Stephan Holljes
On Fri, May 11, 2018 at 2:49 PM, Moritz Barsnick wrote: > On Thu, May 10, 2018 at 17:41:25 +0200, Stephan Holljes wrote: >> +ffserver: segment.o publisher.o lavfhttpd.o ffserver.c >> + cc -g -Wall $(LAV_FLAGS) -lpthread -o ffserver segment.o publisher.o >> lavfhttpd.o ffserver.c > ^ $

Re: [FFmpeg-devel] [PATCH 4/5] ffserver: Implement ffserver and add Makefile

2018-05-11 Thread Moritz Barsnick
On Fri, May 11, 2018 at 14:49:53 +0200, Moritz Barsnick wrote: > [matroska,webm @ 0xa166580] Finding video stream. > [AVIOContext @ 0xb441e5c0] Shutting down http server. > > "Shutting down"??? And I can't connect and play. Forget this part, my static video was too short, and I didn't realize it

Re: [FFmpeg-devel] [PATCH 4/5] ffserver: Implement ffserver and add Makefile

2018-05-11 Thread Moritz Barsnick
On Thu, May 10, 2018 at 17:41:25 +0200, Stephan Holljes wrote: > +ffserver: segment.o publisher.o lavfhttpd.o ffserver.c > + cc -g -Wall $(LAV_FLAGS) -lpthread -o ffserver segment.o publisher.o > lavfhttpd.o ffserver.c ^ $(CC) $(CFLAGS) to be more generic and allow overriding. The LDF

[FFmpeg-devel] [PATCH 4/5] ffserver: Implement ffserver and add Makefile

2018-05-10 Thread Stephan Holljes
Signed-off-by: Stephan Holljes --- Makefile | 18 +++ ffserver.c | 514 + 2 files changed, 532 insertions(+) create mode 100644 Makefile create mode 100644 ffserver.c diff --git a/Makefile b/Makefile new file mode 100644 index