[vlc-commits] commit: Revert "live555: rtsp-caching is needed also for SDP" ( Rémi Denis-Courmont )
git at videolan.org
git at videolan.org
Wed Nov 17 22:12:25 CET 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Nov 17 23:11:59 2010 +0200| [e3937421be7441c05dda2a56d62f5311615df80d] | committer: Rémi Denis-Courmont
Revert "live555: rtsp-caching is needed also for SDP"
This reverts commit 9ae385f64cedf3d88615e6a0ec6a10a3e3d68f49.
This does not work. A pure demux cannot set the PTS delay.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e3937421be7441c05dda2a56d62f5311615df80d
---
modules/demux/live555.cpp | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp
index 949b5c9..99ce6d7 100644
--- a/modules/demux/live555.cpp
+++ b/modules/demux/live555.cpp
@@ -290,7 +290,10 @@ static int Open ( vlc_object_t *p_this )
return VLC_EGENERIC;
}
}
- var_Create( p_demux, "rtsp-caching", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
+ else
+ {
+ var_Create( p_demux, "rtsp-caching", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
+ }
p_demux->pf_demux = Demux;
p_demux->pf_control= Control;
More information about the vlc-commits
mailing list