]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/sout.cpp
Qt: Sout/Convert, display the input MRL.
[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 #include "util/qt_dirs.hpp"
36 #include "components/sout/sout_widgets.hpp"
37
38 #include <QString>
39 #include <QFileDialog>
40
41 struct streaming_account_t
42 {
43     char *psz_username; /*< username of account */
44     char *psz_password; /*< password of account */
45 };
46
47 struct sout_gui_descr_t
48 {
49     /* Access types */
50     bool b_local;   /*< local access module */
51     bool b_file;    /*< file access module */
52     bool b_http;    /*< http access module */
53     bool b_mms;     /*< mms access module */
54     bool b_rtp;     /*< rtp access module */
55     bool b_udp;     /*< udp access module */
56     bool b_dump;    /*< dump access module */
57     bool b_icecast; /*< icecast access module */
58
59     char *psz_file;     /*< filename */
60     char *psz_http;     /*< HTTP servername or ipaddress */
61     char *psz_mms;      /*< MMS servername or ipaddress */
62     char *psz_rtp;      /*< RTP servername or ipaddress */
63     char *psz_udp;      /*< UDP servername or ipaddress */
64     char *psz_icecast;  /*< Icecast servername or ipaddress*/
65
66     int32_t i_http;     /*< http port number */
67     int32_t i_mms;      /*< mms port number */
68     int32_t i_rtp;      /*< rtp port number */
69     int32_t i_rtp_audio;      /*< rtp port number */
70     int32_t i_rtp_video;      /*< rtp port number */
71     int32_t i_udp;      /*< udp port number */
72     int32_t i_icecast;  /*< icecast port number */
73
74     /* Mux */
75     char *psz_mux;      /*< name of muxer to use in streaming */
76
77     /* Misc */
78     bool b_sap;   /*< send SAP announcement */
79     bool b_all_es;/*< send all elementary streams from source stream */
80     bool b_sout_keep;
81     char *psz_group;    /*< SAP Group name */
82     char *psz_name;     /*< SAP name */
83     int32_t i_ttl;      /*< Time To Live (TTL) for network traversal */
84
85     /* Icecast */
86     char *psz_icecast_mountpoint;/*< path to Icecast mountpoint */
87     struct streaming_account_t sa_icecast;  /*< Icecast account information */
88 };
89
90 SoutDialog* SoutDialog::instance = NULL;
91
92 SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf, QString inputMRL )
93            : QVLCDialog( parent,  _p_intf )
94 {
95     setWindowTitle( qtr( "Stream Output" ) );
96
97     /* UI stuff */
98     ui.setupUi( this );
99     ui.inputBox->setMRL( inputMRL );
100
101     changeUDPandRTPmess( false );
102
103 /* ADD HERE for new profiles */
104 #define ADD_PROFILE( name, shortname ) ui.profileBox->addItem( qtr( name ), QVariant( QString( shortname ) ) );
105 /*    ADD_PROFILE( "Custom" , "Custom" )
106     ADD_PROFILE( "Ogg / Theora", "theora" )
107     ADD_PROFILE( "Ogg / Vorbis", "vorbis" )
108     ADD_PROFILE( "MPEG-2", "mpeg2" )
109     ADD_PROFILE( "MP3", "mp3" )
110     ADD_PROFILE( "MPEG-4 audio AAC", "aac" )
111     ADD_PROFILE( "MPEG-4 / DivX", "mp4" )
112     ADD_PROFILE( "H264", "h264" )
113     ADD_PROFILE( "IPod (mp4/aac)", "IPod" )
114     ADD_PROFILE( "XBox", "XBox" )
115     ADD_PROFILE( "Windows (wmv/asf)", "Windows" )
116     ADD_PROFILE( "PSP", "PSP")
117
118 */
119     ui.mrlEdit->setToolTip ( qtr( "Stream output string.\n"
120                 "This is automatically generated "
121                  "when you change the above settings,\n"
122                  "but you can change it manually." ) ) ;
123
124 //     /* Connect everything to the updateMRL function */
125  #define CB( x ) CONNECT( ui.x, toggled( bool ), this, updateMRL() );
126  #define CT( x ) CONNECT( ui.x, textChanged( const QString ), this, updateMRL() );
127  #define CS( x ) CONNECT( ui.x, valueChanged( int ), this, updateMRL() );
128  #define CC( x ) CONNECT( ui.x, currentIndexChanged( int ), this, updateMRL() );
129     /* Output */
130     CB( fileOutput ); CB( HTTPOutput ); CB( localOutput );
131     CB( RTPOutput ); CB( MMSHOutput ); CB( rawInput ); CB( UDPOutput );
132     CT( fileEdit ); CT( HTTPEdit ); CT( RTPEdit ); CT( MMSHEdit ); CT( UDPEdit );
133     CT( IcecastEdit ); CT( IcecastMountpointEdit ); CT( IcecastNamePassEdit );
134     CS( HTTPPort ); CS( RTPPort ); CS( RTPPort2 ); CS( MMSHPort ); CS( UDPPort );
135     /* Misc */
136     CB( soutAll ); CB( soutKeep );  CS( ttl ); CT( sapName ); CT( sapGroup );
137
138 //    CONNECT( ui.profileSelect, optionsChanged(), this, updateMRL() );
139     CONNECT( ui.fileSelectButton, clicked() , this, fileBrowse()  );
140     CONNECT( ui.rawInput, toggled( bool ), this, setRawOptions( bool ) );
141
142     okButton = new QPushButton( qtr( "&Stream" ) );
143     QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ) );
144
145     okButton->setDefault( true );
146     ui.acceptButtonBox->addButton( okButton, QDialogButtonBox::AcceptRole );
147     ui.acceptButtonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
148
149     BUTTONACT( okButton, ok() );
150     BUTTONACT( cancelButton, cancel() );
151
152     CONNECT( ui.UDPOutput, toggled( bool ), this, changeUDPandRTPmess( bool ) );
153     CONNECT( ui.RTPOutput, clicked(bool), this, RTPtoggled( bool ) );
154
155     BUTTONACT( ui.nextButton, next() );
156     BUTTONACT( ui.nextButton2, next() );
157 }
158
159 void SoutDialog::next()
160 {
161     ui.toolBox->setCurrentIndex( ui.toolBox->currentIndex() + 1 );
162 }
163
164 void SoutDialog::fileBrowse()
165 {
166     QString fileName = QFileDialog::getSaveFileName( this, qtr( "Save file..." ),
167             "", qtr( "Containers (*.ps *.ts *.mpg *.ogg *.asf *.mp4 *.mov *.wav *.raw *.flv)" ) );
168     ui.fileEdit->setText( toNativeSeparators( fileName ) );
169     updateMRL();
170 }
171
172 void SoutDialog::setRawOptions( bool b_raw )
173 {
174     ui.localOutput->setEnabled( !b_raw );
175     ui.HTTPOutput->setEnabled( !b_raw );
176     ui.MMSHOutput->setEnabled( !b_raw );
177     ui.UDPOutput->setEnabled( !b_raw );
178     ui.RTPOutput->setEnabled( !b_raw );
179     ui.IcecastOutput->setEnabled( !b_raw );
180     ui.UDPRTPLabel->setEnabled( !b_raw );
181
182     if( b_raw ) 
183         ;
184 //        ui.tabWidget->setDisabled( true );
185     else
186         setOptions();
187 }
188
189 void SoutDialog::setOptions()
190 {
191 /*    QString profileString =
192         ui.profileBox->itemData( ui.profileBox->currentIndex() ).toString();
193     msg_Dbg( p_intf, "Profile Used: %s",  qtu( profileString )); */
194     int index;
195
196 #define setProfile( muxName, hasVideo, vCodecName, hasAudio, aCodecName ) \
197     { \
198         ui.muxName ##Mux->setChecked( true ); \
199         \
200         ui.transcodeAudio->setChecked( hasAudio ); \
201         index = ui.aCodecBox->findData( aCodecName );  \
202         if( index >= 0 ) ui.aCodecBox->setCurrentIndex( index ); \
203         \
204         ui.transcodeVideo->setChecked( hasVideo ); \
205         index = ui.vCodecBox->findData( vCodecName );  \
206         if( index >=0 ) ui.vCodecBox->setCurrentIndex( index ); \
207     }
208
209     /* ADD HERE the profiles you want and need */
210 /*    if( profileString == "IPod" ) setProfile( MP4, true, "mp4v", true, "mp4a" )
211     else if( profileString == "theora" ) setProfile( Ogg, true, "theo", true, "vorb" )
212     else if( profileString == "vorbis" ) setProfile( Ogg, false, "", true, "vorb" )
213     else if( profileString == "mpeg2" ) setProfile( TS, true, "mp2v", true, "mpga" )
214     else if( profileString == "mp3" ) setProfile( RAW, false, "", true, "mp3" )
215     else if( profileString == "aac" ) setProfile( MP4, false, "", true, "mp4a" )
216     else if( profileString == "mp4" ) setProfile( MP4, true, "mp4v", true, "mp4a" )
217     else if( profileString == "h264" ) setProfile( TS, true, "h264", true, "mp4a" )
218     else if( profileString == "XBox" ) setProfile( ASF, true, "WMV2", true, "wma" )
219     else if( profileString == "Windows" ) setProfile( ASF, true, "WMV2", true, "wma" )
220     else if( profileString == "PSP" ) setProfile( MP4, true, "mp4v", true, "mp4a" )*/
221
222         /* If the profile is not a custom one, then disable the tabWidget */
223       /*  if ( profileString == "Custom" )
224             ui.tabWidget->setEnabled( true );
225         else
226             ui.tabWidget->setDisabled( true );
227
228     /* Update the MRL !! */
229     updateMRL();
230 }
231
232 void SoutDialog::changeUDPandRTPmess( bool b_udp )
233 {
234     ui.RTPEdit->setVisible( !b_udp );
235     ui.RTPLabel->setVisible( !b_udp );
236     ui.RTPPort->setVisible( !b_udp );
237     ui.RTPPortLabel->setVisible( !b_udp );
238     ui.UDPEdit->setVisible( b_udp );
239     ui.UDPLabel->setVisible( b_udp );
240     ui.UDPPortLabel->setText( b_udp ? qtr( "Port:") : qtr( "Audio Port:" ) );
241     ui.RTPPort2->setVisible( !b_udp );
242     ui.RTPPortLabel2->setVisible( !b_udp );
243 }
244
245 void SoutDialog::RTPtoggled( bool b_en )
246 {
247     if( !b_en )
248     {
249         if( ui.RTPPort->value() == ui.UDPPort->value() )
250         {
251             ui.UDPPort->setValue( ui.UDPPort->value() + 1 );
252         }
253
254         while( ui.RTPPort2->value() == ui.UDPPort->value() ||
255                 ui.RTPPort2->value() == ui.RTPPort->value() )
256         {
257             ui.RTPPort2->setValue( ui.RTPPort2->value() + 1 );
258         }
259     }
260     ui.sap->setEnabled( b_en );
261     ui.RTPLabel->setEnabled( b_en );
262     ui.RTPEdit->setEnabled( b_en );
263     ui.UDPOutput->setEnabled( b_en );
264     ui.UDPRTPLabel->setEnabled( b_en );
265     ui.UDPEdit->setEnabled( b_en );
266     ui.UDPPort->setEnabled( b_en );
267     ui.UDPPortLabel->setEnabled( b_en );
268     ui.RTPPort2->setEnabled( b_en );
269     ui.RTPPortLabel2->setEnabled( b_en );
270 }
271
272 void SoutDialog::ok()
273 {
274     mrl = ui.mrlEdit->toPlainText();
275     accept();
276 }
277
278 void SoutDialog::cancel()
279 {
280     mrl.clear();
281     reject();
282 }
283
284 void SoutDialog::updateMRL()
285 {
286     sout_gui_descr_t sout;
287     memset( &sout, 0, sizeof( sout_gui_descr_t ) );
288     unsigned int counter = 0;
289
290     sout.b_local = ui.localOutput->isChecked();
291     sout.b_file = ui.fileOutput->isChecked();
292     sout.b_http = ui.HTTPOutput->isChecked();
293     sout.b_mms = ui.MMSHOutput->isChecked();
294     sout.b_icecast = ui.IcecastOutput->isChecked();
295     sout.b_rtp = ui.RTPOutput->isChecked();
296     sout.b_udp = ui.UDPOutput->isChecked();
297     sout.b_dump = ui.rawInput->isChecked();
298     sout.b_sap = ui.sap->isChecked();
299     sout.b_all_es = ui.soutAll->isChecked();
300     sout.b_sout_keep = ui.soutKeep->isChecked();
301 /*    sout.psz_vcodec = strdup( qtu( ui.vCodecBox->itemData( ui.vCodecBox->currentIndex() ).toString() ) );
302     sout.psz_acodec = strdup( qtu( ui.aCodecBox->itemData( ui.aCodecBox->currentIndex() ).toString() ) );
303     sout.psz_scodec = strdup( qtu( ui.subsCodecBox->itemData( ui.subsCodecBox->currentIndex() ).toString() ) );*/
304     sout.psz_file = strdup( qtu( ui.fileEdit->text() ) );
305     sout.psz_http = strdup( qtu( ui.HTTPEdit->text() ) );
306     sout.psz_mms = strdup( qtu( ui.MMSHEdit->text() ) );
307     sout.psz_rtp = strdup( qtu( ui.RTPEdit->text() ) );
308     sout.psz_udp = strdup( qtu( ui.UDPEdit->text() ) );
309     sout.psz_icecast = strdup( qtu( ui.IcecastEdit->text() ) );
310     sout.sa_icecast.psz_username = strdup( qtu( ui.IcecastNamePassEdit->text() ) );
311     sout.sa_icecast.psz_password = strdup( qtu( ui.IcecastNamePassEdit->text() ) );
312     sout.psz_icecast_mountpoint = strdup( qtu( ui.IcecastMountpointEdit->text() ) );
313     sout.i_http = ui.HTTPPort->value();
314     sout.i_mms = ui.MMSHPort->value();
315     sout.i_rtp = ui.RTPPort->value();
316     sout.i_rtp_audio = sout.i_udp = ui.UDPPort->value();
317     sout.i_rtp_video = ui.RTPPort2->value();
318     sout.i_icecast = ui.IcecastPort->value();
319 /*    sout.i_ab = ui.aBitrateSpin->value();
320     sout.i_vb = ui.vBitrateSpin->value();
321     sout.i_channels = ui.aChannelsSpin->value();
322     sout.f_scale = atof( qtu( ui.vScaleBox->currentText() ) ); */
323     sout.psz_group = strdup( qtu( ui.sapGroup->text() ) );
324     sout.psz_name = strdup( qtu( ui.sapName->text() ) );
325
326     if ( sout.b_local ) counter++ ;
327     if ( sout.b_file ) counter++ ;
328     if ( sout.b_http ) counter++ ;
329     if ( sout.b_mms ) counter++ ;
330     if ( sout.b_rtp ) counter++ ;
331     if ( sout.b_udp ) counter ++;
332     if ( sout.b_icecast ) counter ++;
333
334     sout.psz_mux = strdup( qtu( ui.profileSelect->getMux() ) );
335
336     bool trans = false;
337     bool more = false;
338
339     SoutMrl smrl( ":sout=#" );
340
341     /* Special case for demuxdump */
342     if ( sout.b_file && sout.b_dump )
343     {
344         mrl = ":demux=dump :demuxdump-file=";
345         mrl.append( qfu( sout.psz_file ) );
346     }
347     else {
348     if( !ui.profileSelect->getTranscode().isEmpty() )
349     {
350         smrl.begin( ui.profileSelect->getTranscode() );
351         smrl.end();
352     }
353
354     /* Protocol output */
355     if ( sout.b_local || sout.b_file || sout.b_http ||
356          sout.b_mms || sout.b_rtp || sout.b_udp || sout.b_icecast )
357     {
358         if( counter > 1 )
359             smrl.begin( "duplicate" );
360
361 #define ADD(m) do { if( counter > 1 ) { \
362                 smrl.option( "dst", m.getMrl() ); \
363             } else { \
364                 smrl.begin( m.getMrl() ); \
365                 smrl.end(); \
366             } } while(0)
367
368         if ( sout.b_local )
369         {
370             SoutMrl m;
371             m.begin( "display" );
372             m.end();
373
374             ADD( m );
375             more = true;
376         }
377
378         if ( sout.b_file )
379         {
380             SoutMrl m;
381
382             m.begin( "std" );
383             m.option( "access", "file" );
384             if( sout.psz_mux )
385                 m.option( "mux", qfu( sout.psz_mux ) );
386             m.option( "dst", qfu( sout.psz_file ) );
387             m.end();
388
389             ADD( m );
390             more = true;
391         }
392
393         if ( sout.b_http )
394         {
395             SoutMrl m;
396
397             m.begin( "std" );
398             m.option(  "access", "http" );
399             if( sout.psz_mux )
400                 m.option( "mux", qfu( sout.psz_mux ) );
401             m.option( "dst", qfu( sout.psz_http ), sout.i_http );
402             m.end();
403
404             ADD( m );
405             more = true;
406         }
407
408         if ( sout.b_mms )
409         {
410             SoutMrl m;
411
412             m.begin( "std" );
413             m.option(  "access", "mmsh" );
414             m.option( "mux", "asfh" );
415             m.option( "dst", qfu( sout.psz_mms ), sout.i_mms );
416             m.end();
417
418             ADD( m );
419             more = true;
420         }
421
422         if ( sout.b_rtp )
423         {
424             SoutMrl m;
425             if ( sout.b_udp )
426             {
427                 m.begin( "std" );
428                 m.option(  "access", "udp" );
429                 if( sout.psz_mux )
430                     m.option( "mux", qfu( sout.psz_mux ) );
431                 m.option( "dst", qfu( sout.psz_udp ), sout.i_udp );
432             }
433             else
434             {
435                 m.begin( "rtp" );
436
437                 if( sout.psz_rtp && *sout.psz_rtp )
438                     m.option( "dst", qfu( sout.psz_rtp ) );
439                 if( sout.psz_mux )
440                     m.option( "mux", qfu( sout.psz_mux ) );
441
442                 m.option( "port", sout.i_rtp );
443                 if( !sout.psz_mux || strncmp( sout.psz_mux, "ts", 2 ) )
444                 {
445                     m.option( "port-audio", sout.i_rtp_audio );
446                     m.option( "port-video", sout.i_rtp_video );
447                 }
448             }
449
450             /* SAP */
451             if ( sout.b_sap )
452             {
453                 m.option( "sap" );
454                 m.option( "group", qfu( sout.psz_group ) );
455                 m.option( "name", qfu( sout.psz_name ) );
456             }
457
458             m.end();
459             ADD( m );
460             more = true;
461         }
462
463         if( sout.b_icecast )
464         {
465             SoutMrl m;
466             QString url;
467
468             url = qfu(sout.sa_icecast.psz_username) + "@"
469                 + qfu( sout.psz_icecast )
470                 + ":" + QString::number( sout.i_icecast, 10 )
471                 + "/" + qfu( sout.psz_icecast_mountpoint );
472
473             m.begin( "std" );
474             m.option( "access", "shout" );
475             m.option( "mux", "ogg" );
476             m.option( "dst", url );
477             m.end();
478
479             ADD( m );
480             more = true;
481         }
482
483         if ( counter )
484             smrl.end();
485
486         mrl = smrl.getMrl();
487     }
488     }
489
490     if ( sout.b_all_es )
491         mrl.append( " :sout-all" );
492
493     if ( sout.b_sout_keep )
494         mrl.append( " :sout-keep" );
495
496     ui.mrlEdit->setPlainText( mrl );
497     free( sout.psz_file );free( sout.psz_http ); free( sout.psz_mms );
498     free( sout.psz_rtp ); free( sout.psz_udp ); free( sout.psz_mux );
499     free( sout.psz_name ); free( sout.psz_group );
500     free( sout.psz_icecast ); free( sout.psz_icecast_mountpoint );
501     free( sout.sa_icecast.psz_password ); free( sout.sa_icecast.psz_username );
502 }
503
504