#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <string.h>#include <sys/ioctl.h>#include <errno.h>#include <signal.h>#include <sys/socket.h>#include <arpa/inet.h>#include <sys/types.h>#include <sys/stat.h>#include <getopt.h>#include <pthread.h>#include <dlfcn.h>#include <fcntl.h>#include <syslog.h>#include <linux/types.h>#include <linux/videodev2.h>#include "utils.h"#include "mjpg_streamer.h"
Go to the source code of this file.
Functions | |
| void | help (char *progname) |
| int | main (int argc, char *argv[]) |
| void | signal_handler (int sig) |
| int | split_parameters (char *parameter_string, int *argc, char **argv) |
Variables | |
| static globals | global |
| void help | ( | char * | progname | ) |
Definition at line 53 of file mjpg_streamer.c.
| int main | ( | int | argc, |
| char * | argv[] | ||
| ) |
Definition at line 192 of file mjpg_streamer.c.
| void signal_handler | ( | int | sig | ) |
Definition at line 93 of file mjpg_streamer.c.
| int split_parameters | ( | char * | parameter_string, |
| int * | argc, | ||
| char ** | argv | ||
| ) |
Definition at line 157 of file mjpg_streamer.c.
Definition at line 46 of file mjpg_streamer.c.