mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-06-20 07:12:21 +08:00
24 lines
388 B
C++
24 lines
388 B
C++
|
|
/*
|
||
|
|
* RtspParserTester.cpp
|
||
|
|
*
|
||
|
|
* Created on: 2016年9月5日
|
||
|
|
* Author: xzl
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "RtspPlayerImp.h"
|
||
|
|
|
||
|
|
namespace ZL {
|
||
|
|
namespace Rtsp {
|
||
|
|
|
||
|
|
RtspPlayerImp::RtspPlayerImp() {
|
||
|
|
}
|
||
|
|
|
||
|
|
RtspPlayerImp::~RtspPlayerImp() {
|
||
|
|
DebugL<<endl;
|
||
|
|
teardown();
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
} /* namespace Rtsp */
|
||
|
|
} /* namespace ZL */
|