From 9ebb6029f5c47910193b0d2c5917bd4f847eb1fe Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Mon, 18 Jun 2007 20:55:35 +0000 Subject: [PATCH] Added speex check in RTSP (untested, close #1091) --- modules/demux/live555.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp index 41059191de..4e1731704a 100644 --- a/modules/demux/live555.cpp +++ b/modules/demux/live555.cpp @@ -742,6 +742,10 @@ static int SessionsSetup( demux_t *p_demux ) { tk->b_quicktime = VLC_TRUE; } + else if( !strcmp( sub->codecName(), "SPEEX" ) ) + { + tk->fmt.i_codec = VLC_FOURCC( 's', 'p', 'x', ' ' ); + } } else if( !strcmp( sub->mediumName(), "video" ) ) { -- 2.39.2