VLC采用多线程并行解码架构,线程之间通过单独的一个线程控制所有线程的状态,解码器采用filter模式.组织方式为模块架构模块简述:libvlc 是VLC的核心部分。它是一个提供接口的库,比如给VLC提供功能接口:流的接入,音频视频的输出,插件管理,线程系统。interface 包含...
分类:
其他好文 时间:
2014-08-09 18:31:18
阅读次数:
216
CPU: ARMPlaying rtsp://admin:12345@192.168.1.198/mpeg4/main/ch01/av_stream.Connecting to server 192.168.1.198[192.168.1.198]: 554...librtsp: server re...
分类:
其他好文 时间:
2014-08-06 17:37:51
阅读次数:
399
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Cryptography;
namespace RTSP_Digest_Authentication
{
class Program
{
///
...
分类:
其他好文 时间:
2014-08-06 11:53:01
阅读次数:
365
The Code
In this lab you will implement a streaming video server and client that communicate using the Real-Time Streaming Protocol (RTSP) and send data using the Real-time Transfer Protocol (RTP). Y...
分类:
其他好文 时间:
2014-08-04 11:06:37
阅读次数:
413
int_tmain(intargc,_TCHAR*argv[])19{20libvlc_instance_t*inst;21libvlc_media_player_t*mp;22libvlc_media_t*m;23libvlc_log_t*log;2425/*LoadtheVLCengine*/26inst=libvlc_new(0,NULL);2728//logging29log=libvlc_log_open(inst);30libvlc_set_log_verbosity(inst,2);31unsi..
分类:
其他好文 时间:
2014-08-03 08:04:45
阅读次数:
1552
LIVE555研究之二RTSP、RTP/RTCP协议介绍 一、RTSP协议概述 RTSP(Real-Time Stream Protocol )是一种基于文本的应用层协议,在语法及一些消息参数等方面,RTSP协议与HTTP协议类似。RTSP被用于建立的控制媒体流的传输,它为多媒体服务扮演“网络远程控制”的角色。RTSP本身并不用于传送媒体流数据。媒体数据的传送可通过RTP/RTCP等协议来完...
分类:
其他好文 时间:
2014-08-02 12:53:43
阅读次数:
341
http://blog.csdn.net/hdh4638/article/details/76023211 下载代码ki.videolan.org/VLC_Source_codegit colone git://git.videolan.org/vlc.git2 编译http://wiki.vide...
分类:
其他好文 时间:
2014-07-31 23:22:50
阅读次数:
497
在做VLC开发的时候,想使用一个模块访问另外一个模块的数据, 比如在网络模块得到了一些数据,想在其他模块得到这些数据进行处理,这时候就需要两个模块共享一些变量。 查看VLC的源码,发现VLC专门有variables.h和variables.c是用来处理变量的。它提供了一些方法可以创建VLC变量...
分类:
其他好文 时间:
2014-07-31 12:56:46
阅读次数:
218
https://forum.videolan.org/search.php?keywords=live555&terms=all&author=&fid%5B%5D=13&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&sid=b519e9e29dc5c...
分类:
其他好文 时间:
2014-07-30 20:38:24
阅读次数:
169