Files
motion/src/stream.h
Mr-DaveDev 0dc2ae9372 Autotools (#1011)
* Revise directory structure

* Update translation files and mmal

* Test for sys/videoio.h

* Revise sysconfdir specification

* Update defines to match configure

* v4l2 configure, translations

* Update travis

* Updated tests for travis

* Updated 16.04 and fewer checks

* Update travis for Mac

* Move CODE_STANDARD and delete test_builds.sh

* Update documentation
2019-09-21 21:15:08 -06:00

51 lines
1.5 KiB
C

/*
* stream.h
*
* Include file for stream.c
* Copyright (C) 2002 Jeroen Vreeken (pe1rxq@amsat.org)
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef _INCLUDE_STREAM_H_
#define _INCLUDE_STREAM_H_
struct stream_buffer {
unsigned char *ptr;
int ref;
long size;
};
struct stream {
int socket;
FILE *fwrite;
struct stream_buffer *tmpbuffer;
char *cors_header;
long filepos;
int nr;
unsigned long int last;
struct stream *prev;
struct stream *next;
};
int stream_init(struct stream *stm,
int port,
int localhost,
int ipv6_enabled,
const char *cors_header);
void stream_put(struct context *, struct stream *, int *, unsigned char *, int);
void stream_stop(struct stream *);
#endif /* _INCLUDE_STREAM_H_ */