[vlc-devel] [PATCH 3/3] live555: handle DV over RTSP

Ben Hutchings ben at decadent.org.uk
Sun May 24 16:15:44 CEST 2009


live555 now supports DV (DIF, video/dv) format.  Pass it through to
the DV demuxer.
---
I submitted patches to add DV support to live555 which were accepted and
should appear in the next release.

Ben.

 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 02b4cdc..bc18086 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 )
-- 
1.6.3.1




More information about the vlc-devel mailing list