]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/sout.cpp
Remove remaining / in folder names, and use normale DIR_SEP in all platforms.
[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     bool b_sout_keep;
89     char *psz_group;    /*< SAP Group name */
90     char *psz_name;     /*< SAP name */
91     int32_t i_ttl;      /*< Time To Live (TTL) for network traversal */
92
93     /* Icecast */
94     char *psz_icecast_mountpoint;/*< path to Icecast mountpoint */
95     struct streaming_account_t sa_icecast;  /*< Icecast account information */
96 };
97
98 class SoutMrl
99 {
100 public:
101     SoutMrl( const QString head = "")
102     {
103         mrl = head;
104         b_first = true;
105         b_has_bracket = false;
106     }
107
108     QString getMrl()
109     {
110         return mrl;
111     }
112
113     void begin( QString module )
114     {
115         if( !b_first )
116             mrl += ":";
117         b_first = false;
118
119         mrl += module;
120         b_has_bracket = false;
121     }
122     void end()
123     {
124         if( b_has_bracket )
125             mrl += "}";
126     }
127     void option( const QString option, const QString value = "" )
128     {
129         if( !b_has_bracket )
130             mrl += "{";
131         else
132             mrl += ",";
133         b_has_bracket = true;
134
135         mrl += option;
136
137         if( !value.isEmpty() )
138         {
139             char *psz = config_StringEscape( qta(value) );
140             if( psz )
141             {
142                 QString v = QString( psz );
143
144                 mrl += "=\"" + v + "\"";
145
146                 free( psz );
147             }
148         }
149     }
150     void option( const QString name, const int i_value, const int i_precision = 10 )
151     {
152         option( name, QString::number( i_value, i_precision ) );
153     }
154     void option( const QString name, const double f_value )
155     {
156         option( name, QString::number( f_value ) );
157     }
158
159     void option( const QString name, const QString base, const int i_value, const int i_precision = 10 )
160     {
161         option( name, base + ":" + QString::number( i_value, i_precision ) );
162     }
163
164 private:
165     QString mrl;
166     bool b_has_bracket;
167     bool b_first;
168 };
169
170 SoutDialog* SoutDialog::instance = NULL;
171
172 SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf,
173                      bool _transcode_only ) : QVLCDialog( parent,  _p_intf )
174 {
175     setWindowTitle( qtr( "Stream Output" ) );
176
177     b_transcode_only = _transcode_only;
178
179     /* UI stuff */
180     ui.setupUi( this );
181
182     changeUDPandRTPmess( false );
183
184 /* ADD HERE for new profiles */
185 #define ADD_PROFILE( name, shortname ) ui.profileBox->addItem( qtr( name ), QVariant( QString( shortname ) ) );
186     ADD_PROFILE( "Custom" , "Custom" )
187     ADD_PROFILE( "Ogg / Theora", "theora" )
188     ADD_PROFILE( "Ogg / Vorbis", "vorbis" )
189     ADD_PROFILE( "MPEG-2", "mpeg2" )
190     ADD_PROFILE( "MP3", "mp3" )
191     ADD_PROFILE( "MPEG-4 audio AAC", "aac" )
192     ADD_PROFILE( "MPEG-4 / DivX", "mp4" )
193     ADD_PROFILE( "H264", "h264" )
194     ADD_PROFILE( "IPod (mp4/aac)", "IPod" )
195     ADD_PROFILE( "XBox", "XBox" )
196     ADD_PROFILE( "Windows (wmv/asf)", "Windows" )
197     ADD_PROFILE( "PSP", "PSP")
198
199 #define ADD_VCODEC( name, fourcc ) ui.vCodecBox->addItem( name, QVariant( fourcc ) );
200     ADD_VCODEC( "MPEG-1", "mp1v" )
201     ADD_VCODEC( "MPEG-2", "mp2v" )
202     ADD_VCODEC( "MPEG-4", "mp4v" )
203     ADD_VCODEC( "DIVX 1" , "DIV1" )
204     ADD_VCODEC( "DIVX 2" , "DIV2" )
205     ADD_VCODEC( "DIVX 3" , "DIV3" )
206     ADD_VCODEC( "H-263", "H263" )
207     ADD_VCODEC( "H-264", "h264" )
208     ADD_VCODEC( "WMV1", "WMV1" )
209     ADD_VCODEC( "WMV2" , "WMV2" )
210     ADD_VCODEC( "M-JPEG", "MJPG" )
211     ADD_VCODEC( "Theora", "theo" )
212
213 #define ADD_ACODEC( name, fourcc ) ui.aCodecBox->addItem( name, QVariant( fourcc ) );
214     ADD_ACODEC( "MPEG Audio", "mpga" )
215     ADD_ACODEC( "MP3", "mp3" )
216     ADD_ACODEC( "MPEG 4 Audio ( AAC )", "mp4a" )
217     ADD_ACODEC( "A52/AC-3", "a52" )
218     ADD_ACODEC( "Vorbis", "vorb" )
219     ADD_ACODEC( "Flac", "flac" )
220     ADD_ACODEC( "Speex", "spx" )
221     ADD_ACODEC( "WAV", "s16l" )
222     ADD_ACODEC( "WMA", "wma" )
223
224 #define ADD_SCALING( factor ) ui.vScaleBox->addItem( factor );
225     ADD_SCALING( "1" )
226     ADD_SCALING( "0.25" )
227     ADD_SCALING( "0.5" )
228     ADD_SCALING( "0.75" )
229     ADD_SCALING( "1.25" )
230     ADD_SCALING( "1.5" )
231     ADD_SCALING( "1.75" )
232     ADD_SCALING( "2" )
233
234     ui.mrlEdit->setToolTip ( qtr( "Stream output string.\n"
235                 "This is automatically generated "
236                  "when you change the above settings,\n"
237                  "but you can change it manually." ) ) ;
238
239 //     /* Connect everything to the updateMRL function */
240  #define CB( x ) CONNECT( ui.x, toggled( bool ), this, updateMRL() );
241  #define CT( x ) CONNECT( ui.x, textChanged( const QString ), this, updateMRL() );
242  #define CS( x ) CONNECT( ui.x, valueChanged( int ), this, updateMRL() );
243  #define CC( x ) CONNECT( ui.x, currentIndexChanged( int ), this, updateMRL() );
244     /* Output */
245     CB( fileOutput ); CB( HTTPOutput ); CB( localOutput );
246     CB( RTPOutput ); CB( MMSHOutput ); CB( rawInput ); CB( UDPOutput );
247     CT( fileEdit ); CT( HTTPEdit ); CT( RTPEdit ); CT( MMSHEdit ); CT( UDPEdit );
248     CT( IcecastEdit ); CT( IcecastMountpointEdit ); CT( IcecastNamePassEdit );
249     CS( HTTPPort ); CS( RTPPort ); CS( RTPPort2 ); CS( MMSHPort ); CS( UDPPort );
250     /* Transcode */
251     CC( vCodecBox ); CC( subsCodecBox ); CC( aCodecBox ) ;
252     CB( transcodeVideo ); CB( transcodeAudio ); CB( transcodeSubs );
253     /*   CB( sOverlay ); */
254     CS( vBitrateSpin ); CS( aBitrateSpin ); CS( aChannelsSpin ); CC( vScaleBox );
255     /* Mux */
256     CB( PSMux ); CB( TSMux ); CB( MPEG1Mux ); CB( OggMux ); CB( ASFMux );
257     CB( MP4Mux ); CB( MOVMux ); CB( WAVMux ); CB( RAWMux ); CB( FLVMux );
258     /* Misc */
259     CB( soutAll ); CB( soutKeep );  CS( ttl ); CT( sapName ); CT( sapGroup );
260
261     CONNECT( ui.profileBox, activated( const QString & ), this, setOptions() );
262     CONNECT( ui.fileSelectButton, clicked() , this, fileBrowse()  );
263     CONNECT( ui.transcodeVideo, toggled( bool ),
264             this, setVTranscodeOptions( bool ) );
265     CONNECT( ui.transcodeAudio, toggled( bool ),
266             this, setATranscodeOptions( bool ) );
267     CONNECT( ui.transcodeSubs, toggled( bool ),
268             this, setSTranscodeOptions( bool ) );
269     CONNECT( ui.rawInput, toggled( bool ), this, setRawOptions( bool ) );
270
271     okButton = new QPushButton( qtr( "&Stream" ) );
272     QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ) );
273
274     okButton->setDefault( true );
275     ui.acceptButtonBox->addButton( okButton, QDialogButtonBox::AcceptRole );
276     ui.acceptButtonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
277
278     BUTTONACT( okButton, ok() );
279     BUTTONACT( cancelButton, cancel() );
280
281     CONNECT( ui.UDPOutput, toggled( bool ), this, changeUDPandRTPmess( bool ) );
282     CONNECT( ui.RTPOutput, clicked(bool), this, RTPtoggled( bool ) );
283
284     if( b_transcode_only ) toggleSout();
285 }
286
287 void SoutDialog::fileBrowse()
288 {
289     QString fileName = QFileDialog::getSaveFileName( this, qtr( "Save file..." ),
290             "", qtr( "Containers (*.ps *.ts *.mpg *.ogg *.asf *.mp4 *.mov *.wav *.raw *.flv)" ) );
291     ui.fileEdit->setText( toNativeSeparators( fileName ) );
292     updateMRL();
293 }
294
295 void SoutDialog::setVTranscodeOptions( bool b_trans )
296 {
297     ui.vCodecLabel->setEnabled( b_trans );
298     ui.vCodecBox->setEnabled( b_trans );
299     ui.vBitrateLabel->setEnabled( b_trans );
300     ui.vBitrateSpin->setEnabled( b_trans );
301     ui.vScaleLabel->setEnabled( b_trans );
302     ui.vScaleBox->setEnabled( b_trans );
303 }
304
305 void SoutDialog::setATranscodeOptions( bool b_trans )
306 {
307     ui.aCodecLabel->setEnabled( b_trans );
308     ui.aCodecBox->setEnabled( b_trans );
309     ui.aBitrateLabel->setEnabled( b_trans );
310     ui.aBitrateSpin->setEnabled( b_trans );
311     ui.aChannelsLabel->setEnabled( b_trans );
312     ui.aChannelsSpin->setEnabled( b_trans );
313 }
314
315 void SoutDialog::setSTranscodeOptions( bool b_trans )
316 {
317     ui.subsCodecBox->setEnabled( b_trans );
318     ui.subsOverlay->setEnabled( b_trans );
319 }
320
321 void SoutDialog::setRawOptions( bool b_raw )
322 {
323     ui.localOutput->setEnabled( !b_raw );
324     ui.HTTPOutput->setEnabled( !b_raw );
325     ui.MMSHOutput->setEnabled( !b_raw );
326     ui.UDPOutput->setEnabled( !b_raw );
327     ui.RTPOutput->setEnabled( !b_raw );
328     ui.IcecastOutput->setEnabled( !b_raw );
329     ui.UDPRTPLabel->setEnabled( !b_raw );
330
331     if( b_raw )
332         ui.tabWidget->setDisabled( true );
333     else
334         setOptions();
335 }
336
337 void SoutDialog::setOptions()
338 {
339     QString profileString =
340         ui.profileBox->itemData( ui.profileBox->currentIndex() ).toString();
341     msg_Dbg( p_intf, "Profile Used: %s",  qta( profileString ));
342     int index;
343
344 #define setProfile( muxName, hasVideo, vCodecName, hasAudio, aCodecName ) \
345     { \
346         ui.muxName ##Mux->setChecked( true ); \
347         \
348         ui.transcodeAudio->setChecked( hasAudio ); \
349         index = ui.aCodecBox->findData( aCodecName );  \
350         if( index >= 0 ) ui.aCodecBox->setCurrentIndex( index ); \
351         \
352         ui.transcodeVideo->setChecked( hasVideo ); \
353         index = ui.vCodecBox->findData( vCodecName );  \
354         if( index >=0 ) ui.vCodecBox->setCurrentIndex( index ); \
355     }
356
357     /* ADD HERE the profiles you want and need */
358     if( profileString == "IPod" ) setProfile( MP4, true, "mp4v", true, "mp4a" )
359     else if( profileString == "theora" ) setProfile( Ogg, true, "theo", true, "vorb" )
360     else if( profileString == "vorbis" ) setProfile( Ogg, false, "", true, "vorb" )
361     else if( profileString == "mpeg2" ) setProfile( TS, true, "mp2v", true, "mpga" )
362     else if( profileString == "mp3" ) setProfile( RAW, false, "", true, "mp3" )
363     else if( profileString == "aac" ) setProfile( MP4, false, "", true, "mp4a" )
364     else if( profileString == "mp4" ) setProfile( MP4, true, "mp4v", true, "mp4a" )
365     else if( profileString == "h264" ) setProfile( TS, true, "h264", true, "mp4a" )
366     else if( profileString == "XBox" ) setProfile( ASF, true, "WMV2", true, "wma" )
367     else if( profileString == "Windows" ) setProfile( ASF, true, "WMV2", true, "wma" )
368     else if( profileString == "PSP" ) setProfile( Ogg, true, "DIV3", true, "vorb" )
369
370         /* If the profile is not a custom one, then disable the tabWidget */
371         if ( profileString == "Custom" )
372             ui.tabWidget->setEnabled( true );
373         else
374             ui.tabWidget->setDisabled( true );
375
376     /* Update the MRL !! */
377     updateMRL();
378 }
379
380 void SoutDialog::toggleSout()
381 {
382     //Toggle all the streaming options.
383 #define HIDEORSHOW(x) if( b_transcode_only ) x->hide(); else x->show();
384     HIDEORSHOW( ui.HTTPOutput ) ; HIDEORSHOW( ui.RTPOutput ) ; HIDEORSHOW( ui.MMSHOutput ) ; HIDEORSHOW( ui.UDPOutput ) ;
385     HIDEORSHOW( ui.HTTPEdit ) ; HIDEORSHOW( ui.RTPEdit ) ; HIDEORSHOW( ui.MMSHEdit ) ; HIDEORSHOW( ui.UDPEdit ) ;
386     HIDEORSHOW( ui.HTTPLabel ) ; HIDEORSHOW( ui.RTPLabel ) ; HIDEORSHOW( ui.MMSHLabel ) ; HIDEORSHOW( ui.UDPLabel ) ;
387     HIDEORSHOW( ui.HTTPPortLabel ) ; HIDEORSHOW( ui.RTPPortLabel ) ; HIDEORSHOW( ui.MMSHPortLabel ) ; HIDEORSHOW( ui.UDPPortLabel )
388     HIDEORSHOW( ui.HTTPPort ) ; HIDEORSHOW( ui.RTPPort ) ; HIDEORSHOW( ui.MMSHPort ) ; HIDEORSHOW( ui.UDPPort ) ; HIDEORSHOW( ui.RTPPortLabel2 ); HIDEORSHOW( ui.RTPPort2 ); HIDEORSHOW( ui.UDPRTPLabel )
389
390     HIDEORSHOW( ui.sap ); HIDEORSHOW( ui.sapName );
391     HIDEORSHOW( ui.sapGroup ); HIDEORSHOW( ui.sapGroupLabel );
392     HIDEORSHOW( ui.ttlLabel ); HIDEORSHOW( ui.ttl );
393     HIDEORSHOW( ui.soutKeep );
394
395     HIDEORSHOW( ui.IcecastOutput ); HIDEORSHOW( ui.IcecastEdit );
396     HIDEORSHOW( ui.IcecastNamePassEdit ); HIDEORSHOW( ui.IcecastMountpointEdit );
397     HIDEORSHOW( ui.IcecastPort ); HIDEORSHOW( ui.IcecastLabel );
398     HIDEORSHOW( ui.IcecastPortLabel );
399     HIDEORSHOW( ui.IcecastMountpointLabel ); HIDEORSHOW( ui.IcecastNameLabel );
400 #undef HIDEORSHOW
401
402     if( b_transcode_only ) okButton->setText( "&Save" );
403     else okButton->setText( "&Stream" );
404
405     setMinimumHeight( 500 );
406     resize( width(), sizeHint().height() );
407 }
408
409 void SoutDialog::changeUDPandRTPmess( bool b_udp )
410 {
411     ui.RTPEdit->setVisible( !b_udp );
412     ui.RTPLabel->setVisible( !b_udp );
413     ui.RTPPort->setVisible( !b_udp );
414     ui.RTPPortLabel->setVisible( !b_udp );
415     ui.UDPEdit->setVisible( b_udp );
416     ui.UDPLabel->setVisible( b_udp );
417     ui.UDPPortLabel->setText( b_udp ? qtr( "Port:") : qtr( "Audio Port:" ) );
418     ui.RTPPort2->setVisible( !b_udp );
419     ui.RTPPortLabel2->setVisible( !b_udp );
420 }
421
422 void SoutDialog::RTPtoggled( bool b_en )
423 {
424     if( !b_en )
425     {
426         if( ui.RTPPort->value() == ui.UDPPort->value() )
427         {
428             ui.UDPPort->setValue( ui.UDPPort->value() + 1 );
429         }
430
431         while( ui.RTPPort2->value() == ui.UDPPort->value() ||
432                 ui.RTPPort2->value() == ui.RTPPort->value() )
433         {
434             ui.RTPPort2->setValue( ui.RTPPort2->value() + 1 );
435         }
436     }
437     ui.sap->setEnabled( b_en );
438     ui.RTPLabel->setEnabled( b_en );
439     ui.RTPEdit->setEnabled( b_en );
440     ui.UDPOutput->setEnabled( b_en );
441     ui.UDPRTPLabel->setEnabled( b_en );
442     ui.UDPEdit->setEnabled( b_en );
443     ui.UDPPort->setEnabled( b_en );
444     ui.UDPPortLabel->setEnabled( b_en );
445     ui.RTPPort2->setEnabled( b_en );
446     ui.RTPPortLabel2->setEnabled( b_en );
447 }
448
449 void SoutDialog::ok()
450 {
451     mrl = ui.mrlEdit->text();
452     accept();
453 }
454
455 void SoutDialog::cancel()
456 {
457     mrl.clear();
458     reject();
459 }
460
461 void SoutDialog::updateMRL()
462 {
463     sout_gui_descr_t sout;
464     memset( &sout, 0, sizeof( sout_gui_descr_t ) );
465     unsigned int counter = 0;
466
467     sout.b_local = ui.localOutput->isChecked();
468     sout.b_file = ui.fileOutput->isChecked();
469     sout.b_http = ui.HTTPOutput->isChecked();
470     sout.b_mms = ui.MMSHOutput->isChecked();
471     sout.b_icecast = ui.IcecastOutput->isChecked();
472     sout.b_rtp = ui.RTPOutput->isChecked();
473     sout.b_udp = ui.UDPOutput->isChecked();
474     sout.b_dump = ui.rawInput->isChecked();
475     sout.b_sap = ui.sap->isChecked();
476     sout.b_all_es = ui.soutAll->isChecked();
477     sout.b_sout_keep = ui.soutKeep->isChecked();
478     sout.psz_vcodec = strdup( qtu( ui.vCodecBox->itemData( ui.vCodecBox->currentIndex() ).toString() ) );
479     sout.psz_acodec = strdup( qtu( ui.aCodecBox->itemData( ui.aCodecBox->currentIndex() ).toString() ) );
480     sout.psz_scodec = strdup( qtu( ui.subsCodecBox->itemData( ui.subsCodecBox->currentIndex() ).toString() ) );
481     sout.psz_file = strdup( qtu( ui.fileEdit->text() ) );
482     sout.psz_http = strdup( qtu( ui.HTTPEdit->text() ) );
483     sout.psz_mms = strdup( qtu( ui.MMSHEdit->text() ) );
484     sout.psz_rtp = strdup( qtu( ui.RTPEdit->text() ) );
485     sout.psz_udp = strdup( qtu( ui.UDPEdit->text() ) );
486     sout.psz_icecast = strdup( qtu( ui.IcecastEdit->text() ) );
487     sout.sa_icecast.psz_username = strdup( qtu( ui.IcecastNamePassEdit->text() ) );
488     sout.sa_icecast.psz_password = strdup( qtu( ui.IcecastNamePassEdit->text() ) );
489     sout.psz_icecast_mountpoint = strdup( qtu( ui.IcecastMountpointEdit->text() ) );
490     sout.i_http = ui.HTTPPort->value();
491     sout.i_mms = ui.MMSHPort->value();
492     sout.i_rtp = ui.RTPPort->value();
493     sout.i_rtp_audio = sout.i_udp = ui.UDPPort->value();
494     sout.i_rtp_video = ui.RTPPort2->value();
495     sout.i_icecast = ui.IcecastPort->value();
496     sout.i_ab = ui.aBitrateSpin->value();
497     sout.i_vb = ui.vBitrateSpin->value();
498     sout.i_channels = ui.aChannelsSpin->value();
499     sout.f_scale = atof( qta( ui.vScaleBox->currentText() ) );
500     sout.psz_group = strdup( qtu( ui.sapGroup->text() ) );
501     sout.psz_name = strdup( qtu( ui.sapName->text() ) );
502
503     if ( sout.b_local ) counter++ ;
504     if ( sout.b_file ) counter++ ;
505     if ( sout.b_http ) counter++ ;
506     if ( sout.b_mms ) counter++ ;
507     if ( sout.b_rtp ) counter++ ;
508     if ( sout.b_udp ) counter ++;
509     if ( sout.b_icecast ) counter ++;
510
511 #define SMUX( x, txt ) if( ui.x->isChecked() ) sout.psz_mux = strdup( txt );
512     SMUX( PSMux, "ps" );
513     SMUX( TSMux, "ts" );
514     SMUX( MPEG1Mux, "mpeg" );
515     SMUX( OggMux, "ogg" );
516     SMUX( ASFMux, "asf" );
517     SMUX( MP4Mux, "mp4" );
518     SMUX( MOVMux, "mov" );
519     SMUX( WAVMux, "wav" );
520     SMUX( RAWMux, "raw" );
521     SMUX( FLVMux, "flv" );
522     SMUX( MKVMux, "mkv" );
523
524     bool trans = false;
525     bool more = false;
526
527     SoutMrl smrl( ":sout=#" );
528
529     if ( ui.transcodeVideo->isChecked() || ui.transcodeAudio->isChecked()
530          && !ui.rawInput->isChecked() /*demuxdump speciality*/ )
531     {
532         smrl.begin( "transcode" );
533
534         if ( ui.transcodeVideo->isChecked() )
535         {
536             smrl.option( "vcodec", sout.psz_vcodec );
537             smrl.option( "vb", sout.i_vb );
538             smrl.option( "scale", sout.f_scale );
539             trans = true;
540         }
541
542         if ( ui.transcodeAudio->isChecked() )
543         {
544             smrl.option( "acodec", sout.psz_acodec );
545             smrl.option( "ab", sout.i_ab );
546             smrl.option( "channels", sout.i_channels );
547             trans = true;
548         }
549
550         smrl.end();
551
552         mrl = smrl.getMrl();
553     }
554
555     /* Special case for demuxdump */
556     if ( sout.b_file && sout.b_dump )
557     {
558         mrl = ":demux=dump :demuxdump-file=";
559         mrl.append( sout.psz_file );
560     }
561     else
562
563
564     /* Protocol output */
565     if ( sout.b_local || sout.b_file || sout.b_http ||
566          sout.b_mms || sout.b_rtp || sout.b_udp || sout.b_icecast )
567     {
568         if( counter > 1 )
569             smrl.begin( "duplicate" );
570
571 #define ADD(m) do { if( counter > 1 ) { \
572                 smrl.option( "dst", m.getMrl() ); \
573             } else { \
574                 smrl.begin( m.getMrl() ); \
575                 smrl.end(); \
576             } } while(0)
577
578         if ( sout.b_local )
579         {
580             SoutMrl m;
581             m.begin( "display" );
582             m.end();
583
584             ADD( m );
585             more = true;
586         }
587
588         if ( sout.b_file )
589         {
590             SoutMrl m;
591
592             m.begin( "std" );
593             m.option( "access", "file" );
594             if( sout.psz_mux )
595                 m.option( "mux", sout.psz_mux );
596             m.option( "dst", sout.psz_file );
597             m.end();
598
599             ADD( m );
600             more = true;
601         }
602
603         if ( sout.b_http )
604         {
605             SoutMrl m;
606
607             m.begin( "std" );
608             m.option(  "access", "http" );
609             if( sout.psz_mux )
610                 m.option( "mux", sout.psz_mux );
611             m.option( "dst", sout.psz_http, sout.i_http );
612             m.end();
613
614             ADD( m );
615             more = true;
616         }
617
618         if ( sout.b_mms )
619         {
620             SoutMrl m;
621
622             m.begin( "std" );
623             m.option(  "access", "mmsh" );
624             m.option( "mux", "asfh" );
625             m.option( "dst", sout.psz_mms, sout.i_mms );
626             m.end();
627
628             ADD( m );
629             more = true;
630         }
631
632         if ( sout.b_rtp )
633         {
634             SoutMrl m;
635             if ( sout.b_udp )
636             {
637                 m.begin( "std" );
638                 m.option(  "access", "udp" );
639                 if( sout.psz_mux )
640                     m.option( "mux", sout.psz_mux );
641                 m.option( "dst", sout.psz_udp, sout.i_udp );
642             }
643             else
644             {
645                 m.begin( "rtp" );
646
647                 if( sout.psz_rtp && *sout.psz_rtp )
648                     m.option( "dst", sout.psz_rtp );
649                 if( sout.psz_mux )
650                     m.option( "mux", sout.psz_mux );
651
652                 m.option( "port", sout.i_rtp );
653                 if( !sout.psz_mux || strncmp( sout.psz_mux, "ts", 2 ) )
654                 {
655                     m.option( "port-audio", sout.i_rtp_audio );
656                     m.option( "port-video", sout.i_rtp_video );
657                 }
658             }
659
660             /* SAP */
661             if ( sout.b_sap )
662             {
663                 m.option( "sap" );
664                 m.option( "group", sout.psz_group );
665                 m.option( "name", sout.psz_name );
666             }
667
668             m.end();
669             ADD( m );
670             more = true;
671         }
672
673         if( sout.b_icecast )
674         {
675             SoutMrl m;
676             QString url;
677
678             url = QString(sout.sa_icecast.psz_username) + "@" + sout.psz_icecast + ":" +
679                   QString::number( sout.i_icecast, 10 ) + "/" + sout.psz_icecast_mountpoint;
680
681             m.begin( "std" );
682             m.option( "access", "shout" );
683             m.option( "mux", "ogg" );
684             m.option( "dst", url );
685             m.end();
686
687             ADD( m );
688             more = true;
689         }
690
691         if ( counter )
692             smrl.end();
693
694         mrl = smrl.getMrl();
695     }
696
697     if ( sout.b_all_es )
698         mrl.append( " :sout-all" );
699
700     if ( sout.b_sout_keep )
701         mrl.append( " :sout-keep" );
702
703     ui.mrlEdit->setText( mrl );
704     free( sout.psz_acodec ); free( sout.psz_vcodec ); free( sout.psz_scodec );
705     free( sout.psz_file );free( sout.psz_http ); free( sout.psz_mms );
706     free( sout.psz_rtp ); free( sout.psz_udp ); free( sout.psz_mux );
707     free( sout.psz_name ); free( sout.psz_group );
708     free( sout.psz_icecast ); free( sout.psz_icecast_mountpoint );
709     free( sout.sa_icecast.psz_password ); free( sout.sa_icecast.psz_username );
710 }