Final edits to bring all analysers and converters into autotools build system. Done!
This commit is contained in:
parent
fb1a39dbd7
commit
87c567e37c
15 changed files with 38 additions and 867 deletions
7
src/converters/Makefile.am
Normal file
7
src/converters/Makefile.am
Normal 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
|
|
@ -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{
|
||||
|
|
|
@ -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{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue