Fixed documentation, removed a few useless files, changed MD5 implementation to use openssl.

This commit is contained in:
Thulinma 2012-05-11 16:50:30 +02:00
parent 46ed4bdd60
commit bf75cc278c
26 changed files with 97 additions and 608 deletions

View file

@ -1,4 +1,4 @@
/// \file DTSC2FLV/main.cpp
/// \file dtsc2flv.cpp
/// Contains the code that will transform any valid DTSC input into valid FLVs.
#include <iostream>
@ -14,7 +14,7 @@
#include "../../lib/dtsc.h" //DTSC support
#include "../../lib/amf.h" //AMF support
/// Holds all code that converts filetypes to DTSC.
/// Holds all code that converts filetypes to/from DTSC.
namespace Converters{
/// Reads DTSC from STDIN, outputs FLV to STDOUT.

View file

@ -1,4 +1,4 @@
/// \file FLV2DTSC/main.cpp
/// \file flv2dtsc.cpp
/// Contains the code that will transform any valid FLV input into valid DTSC.
#include <iostream>
@ -14,7 +14,7 @@
#include "../../lib/dtsc.h" //DTSC support
#include "../../lib/amf.h" //AMF support
/// Holds all code that converts filetypes to DTSC.
/// Holds all code that converts filetypes to/from to DTSC.
namespace Converters{
/// Reads FLV from STDIN, outputs DTSC to STDOUT.