Documented and nicified AMF parsing. Updated all existing code for this change, except for RTMP connector (which gets a rewrite, like, today).

This commit is contained in:
Thulinma 2011-04-10 22:25:51 +02:00
parent 1b86b9a5ef
commit fab932253d
10 changed files with 404 additions and 341 deletions

View file

@ -1,4 +1,4 @@
SRC = main.cpp
SRC = main.cpp ../util/amf.cpp
OBJ = $(SRC:.cpp=.o)
OUT = AMFtest
INCLUDES =
@ -12,7 +12,7 @@ LIBS = -lssl -lcrypto
default: $(OUT)
.cpp.o:
$(CC) $(INCLUDES) $(CCFLAGS) -c $< -o $@
$(OUT): $(OBJ) amf.cpp
$(OUT): $(OBJ)
$(CC) $(LIBS) -o $(OUT) $(OBJ)
clean:
rm -rf $(OBJ) $(OUT) Makefile.bak *~