mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-01 17:11:31 +08:00
24 lines
298 B
C++
24 lines
298 B
C++
|
/*
|
||
|
* RtmpPlayerImp.cpp
|
||
|
*
|
||
|
* Created on: 2016年12月1日
|
||
|
* Author: xzl
|
||
|
*/
|
||
|
|
||
|
#include "RtmpPlayerImp.h"
|
||
|
|
||
|
namespace ZL {
|
||
|
namespace Rtmp {
|
||
|
|
||
|
RtmpPlayerImp::RtmpPlayerImp() {
|
||
|
|
||
|
}
|
||
|
|
||
|
RtmpPlayerImp::~RtmpPlayerImp() {
|
||
|
DebugL<<endl;
|
||
|
teardown();
|
||
|
}
|
||
|
|
||
|
} /* namespace Rtmp */
|
||
|
} /* namespace ZL */
|