Commit 28fd54b3 authored by Christophe Massiot's avatar Christophe Massiot

* dvb/sim.h, examples/dvb_ecmg.c, examples/dvb_ecmg_test.c: Implement a DVB Simulcrypt ECMG server.

parent 9313f054
This diff is collapsed.
# $Id$ # $Id$
CFLAGS = -Wall -O2 CFLAGS = -Wall -O2 -g
LDFLAGS = LDFLAGS =
OBJ = dvb_print_si OBJ = dvb_print_si dvb_ecmg dvb_ecmg_test
all: $(OBJ) all: $(OBJ)
......
This diff is collapsed.
This diff is collapsed.
...@@ -469,7 +469,7 @@ int main(int i_argc, char **ppsz_argv) ...@@ -469,7 +469,7 @@ int main(int i_argc, char **ppsz_argv)
(!strcmp(ppsz_argv[1], "-h") || !strcmp(ppsz_argv[1], "--help"))) { (!strcmp(ppsz_argv[1], "-h") || !strcmp(ppsz_argv[1], "--help"))) {
fprintf(stderr, "usage: %s < <input file> [> <output>]\n", fprintf(stderr, "usage: %s < <input file> [> <output>]\n",
ppsz_argv[0]); ppsz_argv[0]);
return 1; return EXIT_FAILURE;
} }
memset(p_pids, 0, sizeof(p_pids)); memset(p_pids, 0, sizeof(p_pids));
...@@ -499,5 +499,5 @@ int main(int i_argc, char **ppsz_argv) ...@@ -499,5 +499,5 @@ int main(int i_argc, char **ppsz_argv)
} }
} }
return 0; return EXIT_SUCCESS;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment