简化命名空间

This commit is contained in:
xiongziliang
2018-10-24 17:17:55 +08:00
parent ed1402e9d6
commit 9f16cc1201
133 changed files with 446 additions and 788 deletions

View File

@@ -26,8 +26,8 @@
#include "H264Parser.h"
#include "Util/logger.h"
using namespace toolkit;
using namespace ZL::Util;
H264Parser::H264Parser(){

View File

@@ -7,8 +7,7 @@
#include <memory>
#include "macros.h"
#include "Util/logger.h"
using namespace ZL::Util;
using namespace toolkit;
template <class ForwardIterator>
void STLDeleteContainerPairSecondPointers(ForwardIterator begin,

View File

@@ -8,8 +8,7 @@
#include "macros.h"
#include "h264_parser.h"
#include "h264_poc.h"
using namespace ZL::Util;
using namespace toolkit;
namespace media {

View File

@@ -88,7 +88,7 @@ static type& name = *new type arguments
#include <assert.h>
#include "Util/logger.h"
using namespace ZL::Util;
using namespace toolkit;
#define DCHECK(x) if(!(x)) { ErrorL << "DCHECK " << #x <<endl; }
#define DCHECK_GT(x,y) if(!((x) > (y))) { ErrorL << "DCHECK_GT:" << #x << #y << endl; }