AMF_Creator removed due to unnessecarity
This commit is contained in:
parent
d13816473f
commit
b94a65e409
4 changed files with 0 additions and 44 deletions
|
@ -1,19 +0,0 @@
|
||||||
SRC = main.cpp
|
|
||||||
OBJ = $(SRC:.cpp=.o)
|
|
||||||
OUT = AMFtest
|
|
||||||
INCLUDES =
|
|
||||||
CCFLAGS = -Wall -Wextra -funsigned-char -g
|
|
||||||
CC = $(CROSS)g++
|
|
||||||
LD = $(CROSS)ld
|
|
||||||
AR = $(CROSS)ar
|
|
||||||
LIBS = -lssl -lcrypto
|
|
||||||
.SUFFIXES: .cpp
|
|
||||||
.PHONY: clean default
|
|
||||||
default: $(OUT)
|
|
||||||
.cpp.o:
|
|
||||||
$(CC) $(INCLUDES) $(CCFLAGS) -c $< -o $@
|
|
||||||
$(OUT): $(OBJ) amf.cpp
|
|
||||||
$(CC) $(LIBS) -o $(OUT) $(OBJ)
|
|
||||||
clean:
|
|
||||||
rm -rf $(OBJ) $(OUT) Makefile.bak *~
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
../util/amf.cpp
|
|
|
@ -1,24 +0,0 @@
|
||||||
#define DEBUG 10 //maximum debugging level evah
|
|
||||||
#include <cstdlib>
|
|
||||||
#include <iostream>
|
|
||||||
#include <fstream>
|
|
||||||
#include <string>
|
|
||||||
#include "amf.cpp"
|
|
||||||
|
|
||||||
int main( int argc, char * argv[] ) {
|
|
||||||
if( argc != 2 ) { return 1; }
|
|
||||||
std::string temp;
|
|
||||||
std::ifstream ifs( argv[1] );
|
|
||||||
while( ifs.good() ) {
|
|
||||||
temp += ifs.get();
|
|
||||||
}
|
|
||||||
static AMFType amfdata("empty", (unsigned char)0xFF);
|
|
||||||
amfdata = parseAMF( (const unsigned char*)temp.c_str(), temp.length()-1 );
|
|
||||||
amfdata.Print( );
|
|
||||||
temp = amfdata.Pack( );
|
|
||||||
std::ofstream ofs( "output.bin" );
|
|
||||||
for( unsigned int i = 0; i < temp.size( ); i++ ) {
|
|
||||||
ofs << temp[i];
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue