Final edits to bring all analysers and converters into autotools build system. Done!

This commit is contained in:
Thulinma 2012-05-08 22:43:37 +02:00
parent fb1a39dbd7
commit 87c567e37c
15 changed files with 38 additions and 867 deletions

View file

@ -0,0 +1,7 @@
outdir=../..
out_PROGRAMS=MistDTSC2FLV MistFLV2DTSC
AM_LDFLAGS=-L../../lib
MistDTSC2FLV_SOURCES=dtsc2flv.cpp
MistDTSC2FLV_LDADD=-ldtsc -lflv_tag -lamf -lsocket
MistFLV2DTSC_SOURCES=dtsc2flv.cpp
MistFLV2DTSC_LDADD=-ldtsc -lflv_tag -lamf -lsocket

View file

@ -10,9 +10,9 @@
#include <string.h>
#include <unistd.h>
#include <signal.h>
#include "../../util/flv_tag.h" //FLV support
#include "../../util/dtsc.h" //DTSC support
#include "../../util/amf.h" //AMF support
#include "../../lib/flv_tag.h" //FLV support
#include "../../lib/dtsc.h" //DTSC support
#include "../../lib/amf.h" //AMF support
/// Holds all code that converts filetypes to DTSC.
namespace Converters{

View file

@ -10,9 +10,9 @@
#include <string.h>
#include <unistd.h>
#include <signal.h>
#include "../../util/flv_tag.h" //FLV support
#include "../../util/dtsc.h" //DTSC support
#include "../../util/amf.h" //AMF support
#include "../../lib/flv_tag.h" //FLV support
#include "../../lib/dtsc.h" //DTSC support
#include "../../lib/amf.h" //AMF support
/// Holds all code that converts filetypes to DTSC.
namespace Converters{