资源简介
该RTSP播放器实现了主流RTSP播放器的基本功能,并有所拓展:
1、RTSP 标准码流(包括音视频)的实时预览播放;
2、网络数据流的断线重连;
3、对存储文件的解码播放以及控制;
4、音视频码流的同步存储,文件存储时以当前系统的时间戳作为音视频 播放时的索引,方便在文件播放时以时间戳作为检索条件来点播文件;
5、视频播放格式上支持 h.264、mpeg4、mpeg2 等,音频播放格式上支 持 AAC、AMR、G711 等;
6、视频抓拍;
7、视频显示角度旋转;
8、画面填充控制显示比例。
代码片段和文件信息
/*
www.sourceforge.net/projects/tinyxml
Original file by Yves Berquin.
This software is provided ‘as-is‘ without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose including commercial applications and to alter it and
redistribute it freely subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product an acknowledgment in the product documentation
would be appreciated but is not required.
2. Altered source versions must be plainly marked as such and
must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
/*
* THIS FILE WAS ALTERED BY Tyge L鴙set 7. April 2005.
*/
#ifndef TIxml_USE_STL
#include “tinystr.h“
// Error value for find primitive
const TixmlString::size_type TixmlString::npos = static_cast< TixmlString::size_type >(-1);
// Null rep.
TixmlString::Rep TixmlString::nullrep_ = { 0 0 { ‘\0‘ } };
void TixmlString::reserve (size_type cap)
{
if (cap > capacity())
{
TixmlString tmp;
tmp.init(length() cap);
memcpy(tmp.start() data() length());
swap(tmp);
}
}
TixmlString& TixmlString::assign(const char* str size_type len)
{
size_type cap = capacity();
if (len > cap || cap > 3*(len + 8))
{
TixmlString tmp;
tmp.init(len);
memcpy(tmp.start() str len);
swap(tmp);
}
else
{
memmove(start() str len);
set_size(len);
}
return *this;
}
TixmlString& TixmlString::append(const char* str size_type len)
{
size_type newsize = length() + len;
if (newsize > capacity())
{
reserve (newsize + capacity());
}
memmove(finish() str len);
set_size(newsize);
return *this;
}
TixmlString operator + (const TixmlString & a const TixmlString & b)
{
TixmlString tmp;
tmp.reserve(a.length() + b.length());
tmp += a;
tmp += b;
return tmp;
}
TixmlString operator + (const TixmlString & a const char* b)
{
TixmlString tmp;
TixmlString::size_type b_len = static_castlString::size_type>( strlen(b) );
tmp.reserve(a.length() + b_len);
tmp += a;
tmp.append(b b_len);
return tmp;
}
TixmlString operator + (const char* a const TixmlString & b)
{
TixmlString tmp;
TixmlString::size_type a_len = static_castlString::size_type>( strlen(a) );
tmp.reserve(a_len + b.length());
tmp.append(a a_len);
tmp += b;
return tmp;
}
#endif // TIxml_USE_STL
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 75776 2014-01-10 16:27 WMPla
文件 11816960 2014-02-11 17:05 WMPla
文件 331776 2014-02-11 17:05 WMPla
文件 144525 2013-11-13 09:54 WMPla
文件 148995 2013-11-13 09:54 WMPla
文件 1025 2014-01-10 16:27 WMPla
文件 3586 2014-01-10 16:27 WMPla
文件 7234 2014-01-10 16:27 WMPla
文件 10992 2014-02-11 17:05 WMPla
文件 5462 2014-02-11 17:05 WMPla
文件 1770 2014-01-10 16:27 WMPla
文件 4663 2014-01-10 16:27 WMPla
文件 2673 2014-01-10 16:27 WMPla
文件 1200 2014-01-10 16:27 WMPla
文件 992 2014-01-10 16:27 WMPla
文件 1401 2014-01-10 16:27 WMPla
文件 4689 2014-01-10 16:27 WMPla
文件 3253 2014-01-10 16:27 WMPla
文件 1259 2014-01-10 16:27 WMPla
文件 3757 2014-01-10 16:27 WMPla
文件 51082 2014-01-10 16:27 WMPla
文件 20604 2014-01-10 16:27 WMPla
文件 22688 2014-01-10 16:27 WMPla
文件 20473 2014-01-10 16:27 WMPla
文件 12523 2014-01-10 16:27 WMPla
文件 24850 2014-01-10 16:27 WMPla
文件 5162 2014-01-10 16:27 WMPla
文件 36743 2014-01-10 16:27 WMPla
文件 27603 2014-01-10 16:27 WMPla
文件 2004 2014-01-10 16:27 WMPla
............此处省略563个文件信息
相关资源
- Photoshop智能手机APP界面设计part.
- HLA_RTI教程(适合初学者包含)
- NXP.MIMXRT1052_DFP.10.0.4.pack
- Google Earth 中国国界轮廓.kml
- STM32 ModBus RTU 从机程序
- LwIP应用开发实战指南—基于野火+ST
- 线性代数及其应用Linear algebra and its
- Nport的设置程序 Administrator v1.22
- CS6可用的Portraiture磨皮滤镜32位 64位
- QuartusII简介中文版
- 从RMxprt到Maxwell一键有限元分析过程
- openwrt x86
- The Garbage Collection Handbook: the Art of Au
- 3. Gilbert Strang《Linear Algebra and Its App
- STM32F103RCT6单片机在串口屏上打印正弦
- 全国各个省份echarts省市县级地图jso
- Virtual Serial Port Driver.zip
- 22. USART_CircleBuffer 串口接收环形缓冲区
- 已测可用的TeeChart5控件
- Quantitative Equity Portfolio Management
- OJ离线版 ACM离线本地测评/判定系统
- Classical Mechanics 3rd by Herbert Goldstein
- STM32F030使用HAL库做低功耗
- ACCP5.0S2 课程的全部项目实战PPT(par
- video TS文件
- 可变目标C编译器—设计与实现.part1
- stm32 5个串口初始化实现串口缓存,前
- STM32MINI RTC闹钟 USMART调试时间
- QuartzTest.rar
- 基于FPGA的uart接口电路设计verilog实现
评论
共有 条评论