From ccc7e1941d4d66c65dfb989e21b9675e878b3c8b Mon Sep 17 00:00:00 2001 From: Rob Savoye Date: Thu, 27 May 2010 17:30:44 -0600 Subject: [PATCH] Rename amf namespace to cygnal where used. --- utilities/flvdumper.cpp | 6 +++--- utilities/soldumper.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/utilities/flvdumper.cpp b/utilities/flvdumper.cpp index ccf0e0de5..a22fa0aca 100644 --- a/utilities/flvdumper.cpp +++ b/utilities/flvdumper.cpp @@ -42,7 +42,7 @@ #include "buffer.h" #include "arg_parser.h" -using namespace amf; +using namespace cygnal; using namespace std; using namespace gnash; @@ -195,7 +195,7 @@ main(int argc, char *argv[]) try { // Open the binary file ifstream ifs(filespec.c_str(), ios::binary); - boost::shared_ptr buf(new Buffer); + boost::shared_ptr buf(new Buffer); // Read just the initial 9 byte header ifs.read(reinterpret_cast(buf->reference()), sizeof(Flv::flv_header_t)); log_debug("header is: %s", hexify(buf->reference(), 9, false)); @@ -279,7 +279,7 @@ main(int argc, char *argv[]) if (meta || all) { cout << "FLV Tag type is: MetaData" << endl; } - boost::shared_ptr metadata = flv.decodeMetaData(buf->reference(), bodysize); + boost::shared_ptr metadata = flv.decodeMetaData(buf->reference(), bodysize); if (meta && metadata) { metadata->dump(); } diff --git a/utilities/soldumper.cpp b/utilities/soldumper.cpp index 99c48f23f..f5f69bc34 100644 --- a/utilities/soldumper.cpp +++ b/utilities/soldumper.cpp @@ -195,7 +195,7 @@ main(int argc, char *argv[]) newspec += filespec; } - amf::SOL sol; + cygnal::SOL sol; if (sol.readFile(newspec)) { cout << "SOL file \"" << newspec << "\" read in" << endl; -- 2.11.4.GIT