]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/sout.cpp
Try to fix Sout Dialog ( Part 2 )
[vlc] / modules / gui / qt4 / dialogs / sout.cpp
1 /*****************************************************************************
2  * sout.cpp : Stream output dialog ( old-style )
3  ****************************************************************************
4  * Copyright (C) 2007-2008 the VideoLAN team
5  * Copyright (C) 2007 Société des arts technologiques
6  * Copyright (C) 2007 Savoir-faire Linux
7  *
8  * $Id$
9  *
10  * Authors: Clément Stenac <zorglub@videolan.org>
11  *          Jean-Baptiste Kempf <jb@videolan.org>
12  *          Jean-François Massol <jf.massol -at- gmail.com>
13  *          Pierre-Luc Beaudoin <pierre-luc.beaudoin@savoirfairelinux.com>
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * ( at your option ) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
28  *****************************************************************************/
29
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #include "dialogs/sout.hpp"
35
36 #include <QString>
37 #include <QFileDialog>
38
39 struct streaming_account_t
40 {
41     char *psz_username; /*< username of account */
42     char *psz_password; /*< password of account */
43 };
44
45 struct sout_gui_descr_t
46 {
47     /* Access types */
48     bool b_local;   /*< local access module */
49     bool b_file;    /*< file access module */
50     bool b_http;    /*< http access module */
51     bool b_mms;     /*< mms access module */
52     bool b_rtp;     /*< rtp access module */
53     bool b_udp;     /*< udp access module */
54     bool b_dump;    /*< dump access module */
55     bool b_icecast; /*< icecast access module */
56
57     char *psz_file;     /*< filename */
58     char *psz_http;     /*< HTTP servername or ipaddress */
59     char *psz_mms;      /*< MMS servername or ipaddress */
60     char *psz_rtp;      /*< RTP servername or ipaddress */
61     char *psz_udp;      /*< UDP servername or ipaddress */
62     char *psz_icecast;  /*< Icecast servername or ipaddress*/
63
64     int32_t i_http;     /*< http port number */
65     int32_t i_mms;      /*< mms port number */
66     int32_t i_rtp;      /*< rtp port number */
67     int32_t i_rtp_audio;      /*< rtp port number */
68     int32_t i_rtp_video;      /*< rtp port number */
69     int32_t i_udp;      /*< udp port number */
70     int32_t i_icecast;  /*< icecast port number */
71
72     /* Mux */
73     char *psz_mux;      /*< name of muxer to use in streaming */
74
75     /* Transcode */
76     bool b_soverlay; /*< enable burning overlay in the video */
77     char *psz_vcodec;   /*< video codec to use in transcoding */
78     char *psz_acodec;   /*< audio codec to use in transcoding */
79     char *psz_scodec;   /*< subtitle codec to use in transcoding */
80     int32_t i_vb;       /*< video bitrate to use in transcoding */
81     int32_t i_ab;       /*< audio bitrate to use in transcoding */
82     int32_t i_channels; /*< number of audio channels to use in transcoding */
83     float f_scale;      /*< scaling factor to use in transcoding */
84
85     /* Misc */
86     bool b_sap;   /*< send SAP announcement */
87     bool b_all_es;/*< send all elementary streams from source stream */
88     char *psz_group;    /*< SAP Group name */
89     char *psz_name;     /*< SAP name */
90     int32_t i_ttl;      /*< Time To Live (TTL) for network traversal */
91
92     /* Icecast */
93     char *psz_icecast_mountpoint;/*< path to Icecast mountpoint */
94     struct streaming_account_t sa_icecast;  /*< Icecast account information */
95 };
96
97 SoutDialog* SoutDialog::instance = NULL;
98
99 SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf,
100                      bool _transcode_only ) : QVLCDialog( parent,  _p_intf )
101 {
102     setWindowTitle( qtr( "Stream Output" ) );
103
104     b_transcode_only = _transcode_only;
105
106     /* UI stuff */
107     ui.setupUi( this );
108
109     changeUDPandRTPmess( false );
110
111 /* ADD HERE for new profiles */
112 #define ADD_PROFILE( name, shortname ) ui.profileBox->addItem( qtr( name ), QVariant( QString( shortname ) ) );
113     ADD_PROFILE( "Custom" , "Custom" )
114     ADD_PROFILE( "IPod (mp4/aac)", "IPod" )
115     ADD_PROFILE( "XBox", "XBox" )
116     ADD_PROFILE( "Windows (wmv/asf)", "Windows" )
117     ADD_PROFILE( "PSP", "PSP")
118     ADD_PROFILE( "GSM", "GSM" )
119
120 #define ADD_VCODEC( name, fourcc ) ui.vCodecBox->addItem( name, QVariant( fourcc ) );
121     ADD_VCODEC( "MPEG-1", "mp1v" )
122     ADD_VCODEC( "MPEG-2", "mp2v" )
123     ADD_VCODEC( "MPEG-4", "mp4v" )
124     ADD_VCODEC( "DIVX 1" , "DIV1" )
125     ADD_VCODEC( "DIVX 2" , "DIV2" )
126     ADD_VCODEC( "DIVX 3" , "DIV3" )
127     ADD_VCODEC( "H-263", "H263" )
128     ADD_VCODEC( "H-264", "h264" )
129     ADD_VCODEC( "WMV1", "WMV1" )
130     ADD_VCODEC( "WMV2" , "WMV2" )
131     ADD_VCODEC( "M-JPEG", "MJPG" )
132     ADD_VCODEC( "Theora", "theo" )
133
134 #define ADD_ACODEC( name, fourcc ) ui.aCodecBox->addItem( name, QVariant( fourcc ) );
135     ADD_ACODEC( "MPEG Audio", "mpga" )
136     ADD_ACODEC( "MP3", "mp3" )
137     ADD_ACODEC( "MPEG 4 Audio ( AAC )", "mp4a" )
138     ADD_ACODEC( "A52/AC-3", "a52" )
139     ADD_ACODEC( "Vorbis", "vorb" )
140     ADD_ACODEC( "Flac", "flac" )
141     ADD_ACODEC( "Speex", "spx" )
142     ADD_ACODEC( "WAV", "s16l" )
143     ADD_ACODEC( "WMA", "wma" )
144
145 #define ADD_SCALING( factor ) ui.vScaleBox->addItem( factor );
146     ADD_SCALING( "0.25" )
147     ADD_SCALING( "0.5" )
148     ADD_SCALING( "0.75" )
149     ADD_SCALING( "1" )
150     ADD_SCALING( "1.25" )
151     ADD_SCALING( "1.5" )
152     ADD_SCALING( "1.75" )
153     ADD_SCALING( "2" )
154
155     ui.mrlEdit->setToolTip ( qtr( "Stream output string.\n"
156                 "This is automatically generated "
157                  "when you change the above settings,\n"
158                  "but you can update it manually." ) ) ;
159
160 //     /* Connect everything to the updateMRL function */
161  #define CB( x ) CONNECT( ui.x, toggled( bool ), this, updateMRL() );
162  #define CT( x ) CONNECT( ui.x, textChanged( const QString ), this, updateMRL() );
163  #define CS( x ) CONNECT( ui.x, valueChanged( int ), this, updateMRL() );
164  #define CC( x ) CONNECT( ui.x, currentIndexChanged( int ), this, updateMRL() );
165     /* Output */
166     CB( fileOutput ); CB( HTTPOutput ); CB( localOutput );
167     CB( RTPOutput ); CB( MMSHOutput ); CB( rawInput ); CB( UDPOutput );
168     CT( fileEdit ); CT( HTTPEdit ); CT( RTPEdit ); CT( MMSHEdit ); CT( UDPEdit );
169     CT( IcecastEdit ); CT( IcecastMountpointEdit ); CT( IcecastNamePassEdit );
170     CS( HTTPPort ); CS( RTPPort ); CS( RTPPort2 ); CS( MMSHPort ); CS( UDPPort );
171     /* Transcode */
172     CC( vCodecBox ); CC( subsCodecBox ); CC( aCodecBox ) ;
173     CB( transcodeVideo ); CB( transcodeAudio ); CB( transcodeSubs );
174     /*   CB( sOverlay ); */
175     CS( vBitrateSpin ); CS( aBitrateSpin ); CS( aChannelsSpin ); CC( vScaleBox );
176     /* Mux */
177     CB( PSMux ); CB( TSMux ); CB( MPEG1Mux ); CB( OggMux ); CB( ASFMux );
178     CB( MP4Mux ); CB( MOVMux ); CB( WAVMux ); CB( RAWMux ); CB( FLVMux );
179     /* Misc */
180     CB( soutAll ); CS( ttl ); CT( sapName ); CT( sapGroup );
181
182     CONNECT( ui.profileBox, activated( const QString & ), this, setOptions() );
183     CONNECT( ui.fileSelectButton, clicked() , this, fileBrowse()  );
184     CONNECT( ui.transcodeVideo, toggled( bool ),
185             this, setVTranscodeOptions( bool ) );
186     CONNECT( ui.transcodeAudio, toggled( bool ),
187             this, setATranscodeOptions( bool ) );
188     CONNECT( ui.transcodeSubs, toggled( bool ),
189             this, setSTranscodeOptions( bool ) );
190     CONNECT( ui.rawInput, toggled( bool ), this, setRawOptions( bool ) );
191
192     okButton = new QPushButton( qtr( "&Stream" ) );
193     QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ) );
194
195     okButton->setDefault( true );
196     ui.acceptButtonBox->addButton( okButton, QDialogButtonBox::AcceptRole );
197     ui.acceptButtonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
198
199     BUTTONACT( okButton, ok() );
200     BUTTONACT( cancelButton, cancel() );
201
202     if( b_transcode_only ) toggleSout();
203
204     CONNECT( ui.UDPOutput, toggled( bool ), this, changeUDPandRTPmess( bool ) );
205     CONNECT( ui.RTPOutput, clicked(bool), this, RTPtoggled( bool ) );
206 }
207
208 void SoutDialog::fileBrowse()
209 {
210     QString fileName = QFileDialog::getSaveFileName( this, qtr( "Save file" ), "",
211         qtr( "Containers (*.ps *.ts *.mpg *.ogg *.asf *.mp4 *.mov *.wav *.raw *.flv)" ) );
212     ui.fileEdit->setText( fileName );
213     updateMRL();
214 }
215
216 void SoutDialog::setVTranscodeOptions( bool b_trans )
217 {
218     ui.vCodecLabel->setEnabled( b_trans );
219     ui.vCodecBox->setEnabled( b_trans );
220     ui.vBitrateLabel->setEnabled( b_trans );
221     ui.vBitrateSpin->setEnabled( b_trans );
222     ui.vScaleLabel->setEnabled( b_trans );
223     ui.vScaleBox->setEnabled( b_trans );
224 }
225
226 void SoutDialog::setATranscodeOptions( bool b_trans )
227 {
228     ui.aCodecLabel->setEnabled( b_trans );
229     ui.aCodecBox->setEnabled( b_trans );
230     ui.aBitrateLabel->setEnabled( b_trans );
231     ui.aBitrateSpin->setEnabled( b_trans );
232     ui.aChannelsLabel->setEnabled( b_trans );
233     ui.aChannelsSpin->setEnabled( b_trans );
234 }
235
236 void SoutDialog::setSTranscodeOptions( bool b_trans )
237 {
238     ui.subsCodecBox->setEnabled( b_trans );
239     ui.subsOverlay->setEnabled( b_trans );
240 }
241
242 void SoutDialog::setRawOptions( bool b_raw )
243 {
244     if( b_raw )
245         ui.tabWidget->setDisabled( true );
246     else
247         SoutDialog::setOptions();
248 }
249
250 void SoutDialog::setOptions()
251 {
252     QString profileString =
253         ui.profileBox->itemData( ui.profileBox->currentIndex() ).toString();
254     msg_Dbg( p_intf, "Profile Used: %s",  qta( profileString ));
255     int index;
256
257 #define setProfile( muxName, hasVideo, vCodecName, hasAudio, aCodecName ) \
258     { \
259         ui.muxName ##Mux->setChecked( true ); \
260         \
261         ui.transcodeAudio->setChecked( hasAudio ); \
262         index = ui.aCodecBox->findText( vCodecName );  \
263         if( index >= 0 ) ui.aCodecBox->setCurrentIndex( index ); \
264         \
265         ui.transcodeVideo->setChecked( hasVideo ); \
266         index = ui.aCodecBox->findText( vCodecName );  \
267         if( index >=0 ) ui.vCodecBox->setCurrentIndex( index ); \
268     }
269
270     /* ADD HERE the profiles you want and need */
271     /* FIXME */
272     if( profileString == "IPod" ) setProfile( MP4, true, "mp4a", true, "mp4v" )
273     else if( profileString == "XBox" ) setProfile( ASF, true, "wma", true, "WMV2" )
274
275         /* If the profile is not a custom one, then disable the tabWidget */
276         if ( profileString == "Custom" )
277             ui.tabWidget->setEnabled( true );
278         else
279             ui.tabWidget->setDisabled( true );
280
281     /* Update the MRL !! */
282     updateMRL();
283 }
284
285 //FIXME
286 void SoutDialog::toggleSout()
287 {
288     //Toggle all the streaming options.
289     TOGGLEV( ui.HTTPOutput ) ; TOGGLEV( ui.RTPOutput ) ; TOGGLEV( ui.MMSHOutput ) ; TOGGLEV( ui.UDPOutput ) ;
290     TOGGLEV( ui.HTTPEdit ) ; TOGGLEV( ui.RTPEdit ) ; TOGGLEV( ui.MMSHEdit ) ; TOGGLEV( ui.UDPEdit ) ;
291     TOGGLEV( ui.HTTPLabel ) ; TOGGLEV( ui.RTPLabel ) ; TOGGLEV( ui.MMSHLabel ) ; TOGGLEV( ui.UDPLabel ) ;
292     TOGGLEV( ui.HTTPPortLabel ) ; TOGGLEV( ui.RTPPortLabel ) ; TOGGLEV( ui.MMSHPortLabel ) ; TOGGLEV( ui.UDPPortLabel )
293     TOGGLEV( ui.HTTPPort ) ; TOGGLEV( ui.RTPPort ) ; TOGGLEV( ui.MMSHPort ) ; TOGGLEV( ui.UDPPort ) ;
294
295     TOGGLEV( ui.sap ); TOGGLEV( ui.sapName );
296     TOGGLEV( ui.sapGroup ); TOGGLEV( ui.sapGroupLabel );
297     TOGGLEV( ui.ttlLabel ); TOGGLEV( ui.ttl );
298
299     if( b_transcode_only ) okButton->setText( "&Save" );
300     else okButton->setText( "&Stream" );
301
302     updateGeometry();
303 }
304
305 void SoutDialog::changeUDPandRTPmess( bool b_udp )
306 {
307     ui.RTPEdit->setVisible( !b_udp );
308     ui.RTPLabel->setVisible( !b_udp );
309     ui.RTPPort->setVisible( !b_udp );
310     ui.RTPPortLabel->setVisible( !b_udp );
311     ui.UDPEdit->setVisible( b_udp );
312     ui.UDPLabel->setVisible( b_udp );
313     ui.UDPPortLabel->setText( b_udp ? qtr( "Port:") : qtr( "Audio Port:" ) );
314     ui.RTPPort2->setVisible( !b_udp );
315     ui.RTPPortLabel2->setVisible( !b_udp );
316 }
317
318 void SoutDialog::RTPtoggled( bool b_en )
319 {
320     if( !b_en )
321     {
322         if( ui.RTPPort->value() == ui.UDPPort->value() )
323         {
324             ui.UDPPort->setValue( ui.UDPPort->value() + 1 );
325         }
326
327         while( ui.RTPPort2->value() == ui.UDPPort->value() ||
328                 ui.RTPPort2->value() == ui.RTPPort->value() )
329         {
330             ui.RTPPort2->setValue( ui.RTPPort2->value() + 1 );
331         }
332     }
333     ui.sap->setEnabled( b_en );
334     ui.RTPLabel->setEnabled( b_en );
335     ui.RTPEdit->setEnabled( b_en );
336     ui.UDPOutput->setEnabled( b_en );
337     ui.UDPPort->setEnabled( b_en );
338     ui.UDPPortLabel->setEnabled( b_en );
339     ui.RTPPort2->setEnabled( b_en );
340     ui.RTPPortLabel2->setEnabled( b_en );
341 }
342
343 void SoutDialog::ok()
344 {
345     mrl = ui.mrlEdit->text();
346     accept();
347 }
348
349 void SoutDialog::cancel()
350 {
351     mrl.clear();
352     reject();
353 }
354
355 void SoutDialog::updateMRL()
356 {
357     sout_gui_descr_t sout;
358     memset( &sout, 0, sizeof( sout_gui_descr_t ) );
359     unsigned int counter = 0;
360
361     sout.b_local = ui.localOutput->isChecked();
362     sout.b_file = ui.fileOutput->isChecked();
363     sout.b_http = ui.HTTPOutput->isChecked();
364     sout.b_mms = ui.MMSHOutput->isChecked();
365     sout.b_icecast = ui.IcecastOutput->isChecked();
366     sout.b_rtp = ui.RTPOutput->isChecked();
367     sout.b_udp = ui.UDPOutput->isChecked();
368     sout.b_sap = ui.sap->isChecked();
369     sout.b_all_es = ui.soutAll->isChecked();
370     sout.psz_vcodec = strdup( qtu( ui.vCodecBox->itemData( ui.vCodecBox->currentIndex() ).toString() ) );
371     sout.psz_acodec = strdup( qtu( ui.aCodecBox->itemData( ui.aCodecBox->currentIndex() ).toString() ) );
372     sout.psz_scodec = strdup( qtu( ui.subsCodecBox->itemData( ui.subsCodecBox->currentIndex() ).toString() ) );
373     sout.psz_file = strdup( qtu( ui.fileEdit->text() ) );
374     sout.psz_http = strdup( qtu( ui.HTTPEdit->text() ) );
375     sout.psz_mms = strdup( qtu( ui.MMSHEdit->text() ) );
376     sout.psz_rtp = strdup( qtu( ui.RTPEdit->text() ) );
377     sout.psz_udp = strdup( qtu( ui.UDPEdit->text() ) );
378     sout.psz_icecast = strdup( qtu( ui.IcecastEdit->text() ) );
379     sout.sa_icecast.psz_username = strdup( qtu( ui.IcecastNamePassEdit->text() ) );
380     sout.sa_icecast.psz_password = strdup( qtu( ui.IcecastNamePassEdit->text() ) );
381     sout.psz_icecast_mountpoint = strdup( qtu( ui.IcecastMountpointEdit->text() ) );
382     sout.i_http = ui.HTTPPort->value();
383     sout.i_mms = ui.MMSHPort->value();
384     sout.i_rtp = ui.RTPPort->value();
385     sout.i_rtp_audio = sout.i_udp = ui.UDPPort->value();
386     sout.i_rtp_video = ui.RTPPort2->value();
387     sout.i_icecast = ui.IcecastPort->value();
388     sout.i_ab = ui.aBitrateSpin->value();
389     sout.i_vb = ui.vBitrateSpin->value();
390     sout.i_channels = ui.aChannelsSpin->value();
391     sout.f_scale = atof( qta( ui.vScaleBox->currentText() ) );
392     sout.psz_group = strdup( qtu( ui.sapGroup->text() ) );
393     sout.psz_name = strdup( qtu( ui.sapName->text() ) );
394
395     if ( sout.b_local ) counter++ ;
396     if ( sout.b_file ) counter++ ;
397     if ( sout.b_http ) counter++ ;
398     if ( sout.b_mms ) counter++ ;
399     if ( sout.b_rtp ) counter++ ;
400     if ( sout.b_udp ) counter ++;
401     if ( sout.b_icecast ) counter ++;
402
403 #define SMUX( x, txt ) if( ui.x->isChecked() ) sout.psz_mux = strdup( txt );
404     SMUX( PSMux, "ps" );
405     SMUX( TSMux, "ts" );
406     SMUX( MPEG1Mux, "mpeg" );
407     SMUX( OggMux, "ogg" );
408     SMUX( ASFMux, "asf" );
409     SMUX( MP4Mux, "mp4" );
410     SMUX( MOVMux, "mov" );
411     SMUX( WAVMux, "wav" );
412     SMUX( RAWMux, "raw" );
413     SMUX( FLVMux, "flv" );
414     SMUX( MKVMux, "mkv" );
415
416     bool trans = false;
417     bool more = false;
418
419     if ( ui.transcodeVideo->isChecked() || ui.transcodeAudio->isChecked() )
420     {
421         if ( ui.transcodeVideo->isChecked() )
422         {
423             mrl = ":sout=#transcode{";
424             mrl.append( "vcodec=" );
425             mrl.append( sout.psz_vcodec );
426             mrl.append( "," );
427             mrl.append( "vb=" );
428             mrl.append( QString::number( sout.i_vb,10 ) );
429             mrl.append( "," );
430             mrl.append( "scale=" );
431             mrl.append( QString::number( sout.f_scale ) );
432             trans = true;
433         }
434
435         if ( ui.transcodeAudio->isChecked() )
436         {
437             if ( trans )
438             {
439                 mrl.append( "," );
440             }
441             else
442             {
443                 mrl = ":sout=#transcode{";
444             }
445             mrl.append( "acodec=" );
446             mrl.append( sout.psz_acodec );
447             mrl.append( "," );
448             mrl.append( "ab=" );
449             mrl.append( QString::number( sout.i_ab,10 ) );
450             mrl.append( "," );
451             mrl.append( "channels=" );
452             mrl.append( QString::number( sout.i_channels,10 ) );
453             trans = true;
454         }
455         mrl.append( "}" );
456     }
457
458     /* Protocol output */
459     if ( sout.b_local || sout.b_file || sout.b_http ||
460          sout.b_mms || sout.b_rtp || sout.b_udp || sout.b_icecast )
461     {
462
463 #define ISMORE() if ( more ) mrl.append( "," )
464 #define ATLEASTONE() if ( counter ) mrl.append( "dst=" )
465
466 #define CHECKMUX() \
467        if( sout.psz_mux ) \
468        {                  \
469          mrl.append( ",mux=");\
470          mrl.append( sout.psz_mux ); \
471        }
472
473         if ( trans )
474             mrl.append( ":" );
475         else
476             mrl = ":sout=#";
477
478         if ( counter )
479             mrl.append( "duplicate{" );
480
481         if ( sout.b_local )
482         {
483             ISMORE();
484             ATLEASTONE();
485             mrl.append( "display" );
486             more = true;
487         }
488
489         if ( sout.b_file )
490         {
491             ISMORE();
492             ATLEASTONE();
493             mrl.append( "std{access=file" );
494             CHECKMUX();
495             mrl.append( ",dst=" );
496             mrl.append( sout.psz_file );
497             mrl.append( "}" );
498             more = true;
499         }
500
501         if ( sout.b_http )
502         {
503             ISMORE();
504             ATLEASTONE();
505             mrl.append( "std{access=http" );
506             CHECKMUX();
507             mrl.append( ",dst=" );
508             mrl.append( sout.psz_http );
509             mrl.append( ":" );
510             mrl.append( QString::number( sout.i_http,10 ) );
511             mrl.append( "}" );
512             more = true;
513         }
514
515         if ( sout.b_mms )
516         {
517             ISMORE();
518             ATLEASTONE();
519             mrl.append( "std{access=mmsh" );
520             CHECKMUX();
521             mrl.append( ",dst=" );
522             mrl.append( sout.psz_mms );
523             mrl.append( ":" );
524             mrl.append( QString::number( sout.i_mms,10 ) );
525             mrl.append( "}" );
526             more = true;
527         }
528
529         if ( sout.b_rtp )
530         {
531             ISMORE();
532             ATLEASTONE();
533             if ( sout.b_udp )
534             {
535                 mrl.append( "std{access=udp" );
536                 CHECKMUX();
537                 mrl.append( ",dst=" );
538                 mrl.append( sout.psz_udp );
539                 mrl.append( ":" );
540                 mrl.append( QString::number( sout.i_udp,10 ) );
541             }
542             else
543             {
544                 mrl.append( "rtp{" );
545                 mrl.append( "dst=" );
546                 mrl.append( sout.psz_rtp );
547                 CHECKMUX();
548                 mrl.append( ",port=" );
549                 mrl.append( QString::number( sout.i_rtp,10 ) );
550                 if( !sout.psz_mux || strncmp( sout.psz_mux, "ts", 2 ) )
551                 {
552                     mrl.append( ",port-audio=" );
553                     mrl.append( QString::number( sout.i_rtp_audio, 10 ) );
554                     mrl.append( ",port-video=" );
555                     mrl.append( QString::number( sout.i_rtp_video, 10 ) );
556                 }
557             }
558
559             /* SAP */
560             if ( sout.b_sap )
561             {
562                 mrl.append( ",sap," );
563                 mrl.append( "group=\"" );
564                 mrl.append( sout.psz_group );
565                 mrl.append( "\"," );
566                 mrl.append( "name=\"" );
567                 mrl.append( sout.psz_name );
568                 mrl.append( "\"" );
569             }
570
571             mrl.append( "}" );
572             more = true;
573         }
574
575         if( sout.b_icecast )
576         {
577             ISMORE();
578             ATLEASTONE();
579             mrl.append( "std{access=shout,mux=ogg" );
580             mrl.append( ",dst=" );
581             mrl.append( sout.sa_icecast.psz_username );
582             mrl.append( "@" );
583             mrl.append( sout.psz_icecast );
584             mrl.append( ":" );
585             mrl.append( QString::number( sout.i_icecast, 10 ) );
586             mrl.append( "/" );
587             mrl.append( sout.psz_icecast_mountpoint );
588             mrl.append( "}" );
589             more = true;
590         }
591
592         if ( counter )
593         {
594             mrl.append( "}" );
595         }
596     }
597
598 #undef CHECKMUX
599
600     if ( sout.b_all_es )
601         mrl.append( ":sout-all" );
602
603     ui.mrlEdit->setText( mrl );
604     free( sout.psz_acodec ); free( sout.psz_vcodec ); free( sout.psz_scodec );
605     free( sout.psz_file );free( sout.psz_http ); free( sout.psz_mms );
606     free( sout.psz_rtp ); free( sout.psz_udp ); free( sout.psz_mux );
607     free( sout.psz_name ); free( sout.psz_group );
608     free( sout.psz_icecast ); free( sout.psz_icecast_mountpoint );
609     free( sout.sa_icecast.psz_password ); free( sout.sa_icecast.psz_username );
610 }