]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/sout.cpp
Qt: Save/Convert dialog should not show any streaming features.
[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 #define HIDEORSHOW(x) if( b_transcode_only ) x->hide(); else x->show();
290     HIDEORSHOW( ui.HTTPOutput ) ; HIDEORSHOW( ui.RTPOutput ) ; HIDEORSHOW( ui.MMSHOutput ) ; HIDEORSHOW( ui.UDPOutput ) ;
291     HIDEORSHOW( ui.HTTPEdit ) ; HIDEORSHOW( ui.RTPEdit ) ; HIDEORSHOW( ui.MMSHEdit ) ; HIDEORSHOW( ui.UDPEdit ) ;
292     HIDEORSHOW( ui.HTTPLabel ) ; HIDEORSHOW( ui.RTPLabel ) ; HIDEORSHOW( ui.MMSHLabel ) ; HIDEORSHOW( ui.UDPLabel ) ;
293     HIDEORSHOW( ui.HTTPPortLabel ) ; HIDEORSHOW( ui.RTPPortLabel ) ; HIDEORSHOW( ui.MMSHPortLabel ) ; HIDEORSHOW( ui.UDPPortLabel )
294     HIDEORSHOW( ui.HTTPPort ) ; HIDEORSHOW( ui.RTPPort ) ; HIDEORSHOW( ui.MMSHPort ) ; HIDEORSHOW( ui.UDPPort ) ; HIDEORSHOW( ui.RTPPortLabel2 ); HIDEORSHOW( ui.RTPPort2 );
295
296     HIDEORSHOW( ui.sap ); HIDEORSHOW( ui.sapName );
297     HIDEORSHOW( ui.sapGroup ); HIDEORSHOW( ui.sapGroupLabel );
298     HIDEORSHOW( ui.ttlLabel ); HIDEORSHOW( ui.ttl );
299
300     HIDEORSHOW( ui.IcecastOutput ); HIDEORSHOW( ui.IcecastEdit );
301     HIDEORSHOW( ui.IcecastNamePassEdit ); HIDEORSHOW( ui.IcecastMountpointEdit );
302     HIDEORSHOW( ui.IcecastPort ); HIDEORSHOW( ui.IcecastLabel );
303     HIDEORSHOW( ui.IcecastPortLabel );
304     HIDEORSHOW( ui.IcecastMountpointLabel ); HIDEORSHOW( ui.IcecastNameLabel );
305 #undef HIDEORSHOW
306
307     if( b_transcode_only ) okButton->setText( "&Save" );
308     else okButton->setText( "&Stream" );
309
310     /* FIXME:
311      * The Save dialog is too big if the Stream dialog has already be shown */
312     updateGeometry();
313 }
314
315 void SoutDialog::changeUDPandRTPmess( bool b_udp )
316 {
317     ui.RTPEdit->setVisible( !b_udp );
318     ui.RTPLabel->setVisible( !b_udp );
319     ui.RTPPort->setVisible( !b_udp );
320     ui.RTPPortLabel->setVisible( !b_udp );
321     ui.UDPEdit->setVisible( b_udp );
322     ui.UDPLabel->setVisible( b_udp );
323     ui.UDPPortLabel->setText( b_udp ? qtr( "Port:") : qtr( "Audio Port:" ) );
324     ui.RTPPort2->setVisible( !b_udp );
325     ui.RTPPortLabel2->setVisible( !b_udp );
326 }
327
328 void SoutDialog::RTPtoggled( bool b_en )
329 {
330     if( !b_en )
331     {
332         if( ui.RTPPort->value() == ui.UDPPort->value() )
333         {
334             ui.UDPPort->setValue( ui.UDPPort->value() + 1 );
335         }
336
337         while( ui.RTPPort2->value() == ui.UDPPort->value() ||
338                 ui.RTPPort2->value() == ui.RTPPort->value() )
339         {
340             ui.RTPPort2->setValue( ui.RTPPort2->value() + 1 );
341         }
342     }
343     ui.sap->setEnabled( b_en );
344     ui.RTPLabel->setEnabled( b_en );
345     ui.RTPEdit->setEnabled( b_en );
346     ui.UDPOutput->setEnabled( b_en );
347     ui.UDPPort->setEnabled( b_en );
348     ui.UDPPortLabel->setEnabled( b_en );
349     ui.RTPPort2->setEnabled( b_en );
350     ui.RTPPortLabel2->setEnabled( b_en );
351 }
352
353 void SoutDialog::ok()
354 {
355     mrl = ui.mrlEdit->text();
356     accept();
357 }
358
359 void SoutDialog::cancel()
360 {
361     mrl.clear();
362     reject();
363 }
364
365 void SoutDialog::updateMRL()
366 {
367     sout_gui_descr_t sout;
368     memset( &sout, 0, sizeof( sout_gui_descr_t ) );
369     unsigned int counter = 0;
370
371     sout.b_local = ui.localOutput->isChecked();
372     sout.b_file = ui.fileOutput->isChecked();
373     sout.b_http = ui.HTTPOutput->isChecked();
374     sout.b_mms = ui.MMSHOutput->isChecked();
375     sout.b_icecast = ui.IcecastOutput->isChecked();
376     sout.b_rtp = ui.RTPOutput->isChecked();
377     sout.b_udp = ui.UDPOutput->isChecked();
378     sout.b_sap = ui.sap->isChecked();
379     sout.b_all_es = ui.soutAll->isChecked();
380     sout.psz_vcodec = strdup( qtu( ui.vCodecBox->itemData( ui.vCodecBox->currentIndex() ).toString() ) );
381     sout.psz_acodec = strdup( qtu( ui.aCodecBox->itemData( ui.aCodecBox->currentIndex() ).toString() ) );
382     sout.psz_scodec = strdup( qtu( ui.subsCodecBox->itemData( ui.subsCodecBox->currentIndex() ).toString() ) );
383     sout.psz_file = strdup( qtu( ui.fileEdit->text() ) );
384     sout.psz_http = strdup( qtu( ui.HTTPEdit->text() ) );
385     sout.psz_mms = strdup( qtu( ui.MMSHEdit->text() ) );
386     sout.psz_rtp = strdup( qtu( ui.RTPEdit->text() ) );
387     sout.psz_udp = strdup( qtu( ui.UDPEdit->text() ) );
388     sout.psz_icecast = strdup( qtu( ui.IcecastEdit->text() ) );
389     sout.sa_icecast.psz_username = strdup( qtu( ui.IcecastNamePassEdit->text() ) );
390     sout.sa_icecast.psz_password = strdup( qtu( ui.IcecastNamePassEdit->text() ) );
391     sout.psz_icecast_mountpoint = strdup( qtu( ui.IcecastMountpointEdit->text() ) );
392     sout.i_http = ui.HTTPPort->value();
393     sout.i_mms = ui.MMSHPort->value();
394     sout.i_rtp = ui.RTPPort->value();
395     sout.i_rtp_audio = sout.i_udp = ui.UDPPort->value();
396     sout.i_rtp_video = ui.RTPPort2->value();
397     sout.i_icecast = ui.IcecastPort->value();
398     sout.i_ab = ui.aBitrateSpin->value();
399     sout.i_vb = ui.vBitrateSpin->value();
400     sout.i_channels = ui.aChannelsSpin->value();
401     sout.f_scale = atof( qta( ui.vScaleBox->currentText() ) );
402     sout.psz_group = strdup( qtu( ui.sapGroup->text() ) );
403     sout.psz_name = strdup( qtu( ui.sapName->text() ) );
404
405     if ( sout.b_local ) counter++ ;
406     if ( sout.b_file ) counter++ ;
407     if ( sout.b_http ) counter++ ;
408     if ( sout.b_mms ) counter++ ;
409     if ( sout.b_rtp ) counter++ ;
410     if ( sout.b_udp ) counter ++;
411     if ( sout.b_icecast ) counter ++;
412
413 #define SMUX( x, txt ) if( ui.x->isChecked() ) sout.psz_mux = strdup( txt );
414     SMUX( PSMux, "ps" );
415     SMUX( TSMux, "ts" );
416     SMUX( MPEG1Mux, "mpeg" );
417     SMUX( OggMux, "ogg" );
418     SMUX( ASFMux, "asf" );
419     SMUX( MP4Mux, "mp4" );
420     SMUX( MOVMux, "mov" );
421     SMUX( WAVMux, "wav" );
422     SMUX( RAWMux, "raw" );
423     SMUX( FLVMux, "flv" );
424     SMUX( MKVMux, "mkv" );
425
426     bool trans = false;
427     bool more = false;
428
429     if ( ui.transcodeVideo->isChecked() || ui.transcodeAudio->isChecked() )
430     {
431         if ( ui.transcodeVideo->isChecked() )
432         {
433             mrl = ":sout=#transcode{";
434             mrl.append( "vcodec=" );
435             mrl.append( sout.psz_vcodec );
436             mrl.append( "," );
437             mrl.append( "vb=" );
438             mrl.append( QString::number( sout.i_vb,10 ) );
439             mrl.append( "," );
440             mrl.append( "scale=" );
441             mrl.append( QString::number( sout.f_scale ) );
442             trans = true;
443         }
444
445         if ( ui.transcodeAudio->isChecked() )
446         {
447             if ( trans )
448             {
449                 mrl.append( "," );
450             }
451             else
452             {
453                 mrl = ":sout=#transcode{";
454             }
455             mrl.append( "acodec=" );
456             mrl.append( sout.psz_acodec );
457             mrl.append( "," );
458             mrl.append( "ab=" );
459             mrl.append( QString::number( sout.i_ab,10 ) );
460             mrl.append( "," );
461             mrl.append( "channels=" );
462             mrl.append( QString::number( sout.i_channels,10 ) );
463             trans = true;
464         }
465         mrl.append( "}" );
466     }
467
468     /* Protocol output */
469     if ( sout.b_local || sout.b_file || sout.b_http ||
470          sout.b_mms || sout.b_rtp || sout.b_udp || sout.b_icecast )
471     {
472
473 #define ISMORE() if ( more ) mrl.append( "," )
474 #define ATLEASTONE() if ( counter ) mrl.append( "dst=" )
475
476 #define CHECKMUX() \
477        if( sout.psz_mux ) \
478        {                  \
479          mrl.append( ",mux=");\
480          mrl.append( sout.psz_mux ); \
481        }
482
483         if ( trans )
484             mrl.append( ":" );
485         else
486             mrl = ":sout=#";
487
488         if ( counter )
489             mrl.append( "duplicate{" );
490
491         if ( sout.b_local )
492         {
493             ISMORE();
494             ATLEASTONE();
495             mrl.append( "display" );
496             more = true;
497         }
498
499         if ( sout.b_file )
500         {
501             ISMORE();
502             ATLEASTONE();
503             mrl.append( "std{access=file" );
504             CHECKMUX();
505             mrl.append( ",dst=" );
506             mrl.append( sout.psz_file );
507             mrl.append( "}" );
508             more = true;
509         }
510
511         if ( sout.b_http )
512         {
513             ISMORE();
514             ATLEASTONE();
515             mrl.append( "std{access=http" );
516             CHECKMUX();
517             mrl.append( ",dst=" );
518             mrl.append( sout.psz_http );
519             mrl.append( ":" );
520             mrl.append( QString::number( sout.i_http,10 ) );
521             mrl.append( "}" );
522             more = true;
523         }
524
525         if ( sout.b_mms )
526         {
527             ISMORE();
528             ATLEASTONE();
529             mrl.append( "std{access=mmsh" );
530             CHECKMUX();
531             mrl.append( ",dst=" );
532             mrl.append( sout.psz_mms );
533             mrl.append( ":" );
534             mrl.append( QString::number( sout.i_mms,10 ) );
535             mrl.append( "}" );
536             more = true;
537         }
538
539         if ( sout.b_rtp )
540         {
541             ISMORE();
542             ATLEASTONE();
543             if ( sout.b_udp )
544             {
545                 mrl.append( "std{access=udp" );
546                 CHECKMUX();
547                 mrl.append( ",dst=" );
548                 mrl.append( sout.psz_udp );
549                 mrl.append( ":" );
550                 mrl.append( QString::number( sout.i_udp,10 ) );
551             }
552             else
553             {
554                 mrl.append( "rtp{" );
555                 mrl.append( "dst=" );
556                 mrl.append( sout.psz_rtp );
557                 CHECKMUX();
558                 mrl.append( ",port=" );
559                 mrl.append( QString::number( sout.i_rtp,10 ) );
560                 if( !sout.psz_mux || strncmp( sout.psz_mux, "ts", 2 ) )
561                 {
562                     mrl.append( ",port-audio=" );
563                     mrl.append( QString::number( sout.i_rtp_audio, 10 ) );
564                     mrl.append( ",port-video=" );
565                     mrl.append( QString::number( sout.i_rtp_video, 10 ) );
566                 }
567             }
568
569             /* SAP */
570             if ( sout.b_sap )
571             {
572                 mrl.append( ",sap," );
573                 mrl.append( "group=\"" );
574                 mrl.append( sout.psz_group );
575                 mrl.append( "\"," );
576                 mrl.append( "name=\"" );
577                 mrl.append( sout.psz_name );
578                 mrl.append( "\"" );
579             }
580
581             mrl.append( "}" );
582             more = true;
583         }
584
585         if( sout.b_icecast )
586         {
587             ISMORE();
588             ATLEASTONE();
589             mrl.append( "std{access=shout,mux=ogg" );
590             mrl.append( ",dst=" );
591             mrl.append( sout.sa_icecast.psz_username );
592             mrl.append( "@" );
593             mrl.append( sout.psz_icecast );
594             mrl.append( ":" );
595             mrl.append( QString::number( sout.i_icecast, 10 ) );
596             mrl.append( "/" );
597             mrl.append( sout.psz_icecast_mountpoint );
598             mrl.append( "}" );
599             more = true;
600         }
601
602         if ( counter )
603         {
604             mrl.append( "}" );
605         }
606     }
607
608 #undef CHECKMUX
609
610     if ( sout.b_all_es )
611         mrl.append( ":sout-all" );
612
613     ui.mrlEdit->setText( mrl );
614     free( sout.psz_acodec ); free( sout.psz_vcodec ); free( sout.psz_scodec );
615     free( sout.psz_file );free( sout.psz_http ); free( sout.psz_mms );
616     free( sout.psz_rtp ); free( sout.psz_udp ); free( sout.psz_mux );
617     free( sout.psz_name ); free( sout.psz_group );
618     free( sout.psz_icecast ); free( sout.psz_icecast_mountpoint );
619     free( sout.sa_icecast.psz_password ); free( sout.sa_icecast.psz_username );
620 }