Browse Source

Move libtsfuncs to libtsfuncs submodule and change libfuncs submodule url.

The libraries are now free software and are hosted on github.com
Georgi Chorbadzhiyski 12 years ago
parent
commit
c8d7c5219d
7 changed files with 10 additions and 10 deletions
  1. 4
    4
      .gitmodules
  2. 2
    2
      Makefile
  3. 1
    1
      camd.c
  4. 1
    1
      data.h
  5. 0
    1
      libts
  6. 1
    0
      libtsfuncs
  7. 1
    1
      tables.c

+ 4
- 4
.gitmodules View File

@@ -1,6 +1,6 @@
1
-[submodule "libts"]
2
-	path = libts
3
-	url = git@git:libts.git
1
+[submodule "libtsfuncs"]
2
+	path = libtsfuncs
3
+	url = git://github.com/gfto/libtsfuncs.git
4 4
 [submodule "libfuncs"]
5 5
 	path = libfuncs
6
-	url = git@git:libfuncs.git
6
+	url = git://github.com/gfto/libfuncs.git

+ 2
- 2
Makefile View File

@@ -9,8 +9,8 @@ Q = @
9 9
 FUNCS_DIR = libfuncs
10 10
 FUNCS_LIB = $(FUNCS_DIR)/libfuncs.a
11 11
 
12
-TS_DIR = libts
13
-TS_LIB = $(TS_DIR)/libts.a
12
+TS_DIR = libtsfuncs
13
+TS_LIB = $(TS_DIR)/libtsfuncs.a
14 14
 
15 15
 tsdecrypt_OBJS = data.o udp.o util.o camd.o process.o tables.o tsdecrypt.o $(FUNCS_LIB) $(TS_LIB)
16 16
 tsdecrypt_LIBS = -lcrypto -ldvbcsa -lpthread

+ 1
- 1
camd.c View File

@@ -29,7 +29,7 @@
29 29
 #include <dvbcsa/dvbcsa.h>
30 30
 
31 31
 #include "libfuncs/libfuncs.h"
32
-#include "libts/tsfuncs.h"
32
+#include "libtsfuncs/tsfuncs.h"
33 33
 
34 34
 #include "data.h"
35 35
 #include "util.h"

+ 1
- 1
data.h View File

@@ -26,7 +26,7 @@
26 26
 #include <dvbcsa/dvbcsa.h>
27 27
 
28 28
 #include "libfuncs/libfuncs.h"
29
-#include "libts/tsfuncs.h"
29
+#include "libtsfuncs/tsfuncs.h"
30 30
 
31 31
 // 7 * 188
32 32
 #define FRAME_SIZE 1316

+ 0
- 1
libts

@@ -1 +0,0 @@
1
-Subproject commit 9bd81d834bcdce23acdb66db92795c83f32d7415

+ 1
- 0
libtsfuncs

@@ -0,0 +1 @@
1
+Subproject commit 5627d6d019dcc605862181231bb3841fb5dd4a6b

+ 1
- 1
tables.c View File

@@ -19,7 +19,7 @@
19 19
 #include "tables.h"
20 20
 #include "camd.h"
21 21
 
22
-#include "libts/tsfuncs.h"
22
+#include "libtsfuncs/tsfuncs.h"
23 23
 #include "libfuncs/libfuncs.h"
24 24
 
25 25
 extern void show_ts_pack(struct ts *ts, uint16_t pid, char *wtf, char *extra, uint8_t *ts_packet);

Loading…
Cancel
Save