[vlc-devel] commit: live555: handle DV over RTSP (Ben Hutchings )

git version control git at videolan.org
Sun May 24 20:10:47 CEST 2009


vlc | branch: master | Ben Hutchings <ben at decadent.org.uk> | Sun May 24 15:15:44 2009 +0100| [90daa759216b704773ad199e627c2a95f18a0243] | committer: Rémi Denis-Courmont 

live555: handle DV over RTSP

live555 now supports DV (DIF, video/dv) format.  Pass it through to
the DV demuxer.

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=90daa759216b704773ad199e627c2a95f18a0243
---

 modules/demux/live555.cpp |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp
index 3a75409..46724d7 100644
--- a/modules/demux/live555.cpp
+++ b/modules/demux/live555.cpp
@@ -998,6 +998,12 @@ static int SessionsSetup( demux_t *p_demux )
                         p_sys->p_out_asf = stream_DemuxNew( p_demux, "asf",
                                                             p_demux->out );;
                 }
+                else if( !strcmp( sub->codecName(), "DV" ) )
+                {
+                    tk->b_muxed = true;
+                    tk->p_out_muxed = stream_DemuxNew( p_demux, "rawdv",
+                                                       p_demux->out );
+                }
             }
 
             if( !tk->b_quicktime && !tk->b_muxed && !tk->b_asf )




More information about the vlc-devel mailing list