]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/sout.cpp
Qt4 - Define a TOGGLEV to toggleVisible on QWidgets, and use it instead of rewriting...
[vlc] / modules / gui / qt4 / dialogs / sout.cpp
1 /*****************************************************************************
2  * sout.cpp : Stream output dialog ( old-style )
3  ****************************************************************************
4  * Copyright ( C ) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Clément Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *          Jean-François Massol <jf.massol -at- gmail.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * ( at your option ) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #include "dialogs/sout.hpp"
27 #include "qt4.hpp"
28 #include <vlc_streaming.h>
29
30 #include <iostream>
31 #include <QString>
32 #include <QFileDialog>
33
34 SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf,
35                      bool _transcode_only ) : QVLCDialog( parent,  _p_intf )
36 {
37     setWindowTitle( qtr( "Stream output" ) );
38
39     b_transcode_only = _transcode_only;
40
41     /* UI stuff */
42     ui.setupUi( this );
43
44 /* ADD HERE for new profiles */
45 #define ADD_PROFILE( name, shortname ) ui.profileBox->addItem( qtr( name ), QVariant( QString( shortname ) ) );
46     ADD_PROFILE( "Custom" , "Custom" )
47     ADD_PROFILE( "IPod (mp4/aac)", "IPod" )
48     ADD_PROFILE( "XBox", "XBox" )
49     ADD_PROFILE( "Windows (wmv/asf)", "Windows" )
50     ADD_PROFILE( "PSP", "PSP")
51     ADD_PROFILE( "GSM", "GSM" )
52
53 #define ADD_VCODEC( name, fourcc ) ui.vCodecBox->addItem( name, QVariant( fourcc ) );
54     ADD_VCODEC( "MPEG-1", "mp1v" )
55     ADD_VCODEC( "MPEG-2", "mp2v" )
56     ADD_VCODEC( "MPEG-4", "mp4v" )
57     ADD_VCODEC( "DIVX 1" , "DIV1" )
58     ADD_VCODEC( "DIVX 2" , "DIV1" )
59     ADD_VCODEC( "DIVX 3" , "DIV1" )
60     ADD_VCODEC( "H-263", "H263" )
61     ADD_VCODEC( "H-264", "h264" )
62     ADD_VCODEC( "WMV1", "WMV1" )
63     ADD_VCODEC( "WMV2" , "WMV2" )
64     ADD_VCODEC( "M-JPEG", "MJPG" )
65     ADD_VCODEC( "Theora", "theo" )
66
67 #define ADD_ACODEC( name, fourcc ) ui.aCodecBox->addItem( name, QVariant( fourcc ) );
68     ADD_ACODEC( "MPEG Audio", "mpga" )
69     ADD_ACODEC( "MP3", "mp3" )
70     ADD_ACODEC( "MPEG 4 Audio ( AAC )", "mp4a" )
71     ADD_ACODEC( "A52/AC-3", "a52" )
72     ADD_ACODEC( "Vorbis", "vorb" )
73     ADD_ACODEC( "Flac", "flac" )
74     ADD_ACODEC( "Speex", "spx" )
75     ADD_ACODEC( "WAV", "s16l" )
76     ADD_ACODEC( "WMA", "wma" )
77
78 #define ADD_SCALING( factor ) ui.vScaleBox->addItem( factor );
79     ADD_SCALING( "0.25" )
80     ADD_SCALING( "0.5" )
81     ADD_SCALING( "0.75" )
82     ADD_SCALING( "1" )
83     ADD_SCALING( "1.25" )
84     ADD_SCALING( "1.5" )
85     ADD_SCALING( "1.75" )
86     ADD_SCALING( "2" )
87
88     ui.mrlEdit->setToolTip ( qtr( "Stream output string.\n This is automatically generated "
89                                                 "when you change the above settings,\n but you can update it manually." ) ) ;
90
91 //     /* Connect everything to the updateMRL function */
92  #define CB( x ) CONNECT( ui.x, clicked( bool ), this, updateMRL() );
93  #define CT( x ) CONNECT( ui.x, textChanged( const QString ), this, updateMRL() );
94  #define CS( x ) CONNECT( ui.x, valueChanged( int ), this, updateMRL() );
95  #define CC( x ) CONNECT( ui.x, currentIndexChanged( int ), this, updateMRL() );
96 //     /* Output */
97      CB( fileOutput ); CB( HTTPOutput ); CB( localOutput );
98      CB( UDPOutput ); CB( MMSHOutput ); CB( rawInput );
99      CT( fileEdit ); CT( HTTPEdit ); CT( UDPEdit ); CT( MMSHEdit );
100      CS( HTTPPort ); CS( UDPPort ); CS( MMSHPort );
101 //     /* Transcode */
102      CC( vCodecBox ); CC( subsCodecBox ); CC( aCodecBox ) ;
103      CB( transcodeVideo ); CB( transcodeAudio ); CB( transcodeSubs );
104 //     CB( sOverlay );
105      CS( vBitrateSpin ); CS( aBitrateSpin ); CS( aChannelsSpin ); CC( vScaleBox );
106 //     /* Mux */
107      CB( PSMux ); CB( TSMux ); CB( MPEG1Mux ); CB( OggMux ); CB( ASFMux );
108      CB( MP4Mux ); CB( MOVMux ); CB( WAVMux ); CB( RAWMux ); CB( FLVMux );
109 //     /* Misc */
110      CB( soutAll ); CS( ttl ); CT( sapName ); CT( sapGroup );
111 //
112     CONNECT( ui.profileBox, activated( const QString & ), this, setOptions() );
113     CONNECT( ui.fileSelectButton, clicked() , this, fileBrowse()  );
114     CONNECT( ui.transcodeVideo, toggled( bool ), this, setVTranscodeOptions( bool ) );
115     CONNECT( ui.transcodeAudio, toggled( bool ), this, setATranscodeOptions( bool ) );
116     CONNECT( ui.transcodeSubs, toggled( bool ), this, setSTranscodeOptions( bool ) );
117     CONNECT( ui.rawInput, toggled( bool ), this, setRawOptions( bool ) );
118
119     okButton = new QPushButton( qtr( "&Stream" ) );
120     QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ) );
121
122     okButton->setDefault( true );
123     ui.acceptButtonBox->addButton( okButton, QDialogButtonBox::AcceptRole );
124     ui.acceptButtonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
125
126     BUTTONACT( okButton, ok() );
127     BUTTONACT( cancelButton, cancel() );
128
129     if( b_transcode_only ) toggleSout();
130 }
131
132 void SoutDialog::fileBrowse()
133 {
134     ui.tabWidget->setTabEnabled( 0,false );
135     QString fileName = QFileDialog::getOpenFileName( this, qtr( "Save file" ), "",
136         qtr( "Containers (*.ps *.ts *.mpg *.ogg *.asf *.mp4 *.mov *.wav *.raw *.flv)" ) );
137     ui.fileEdit->setText( fileName );
138     updateMRL();
139 }
140
141 void SoutDialog::setVTranscodeOptions( bool b_trans )
142 {
143     ui.vCodecLabel->setEnabled( b_trans );
144     ui.vCodecBox->setEnabled( b_trans );
145     ui.vBitrateLabel->setEnabled( b_trans );
146     ui.vBitrateSpin->setEnabled( b_trans );
147     ui.vScaleLabel->setEnabled( b_trans );
148     ui.vScaleBox->setEnabled( b_trans );
149 }
150
151 void SoutDialog::setATranscodeOptions( bool b_trans )
152 {
153     ui.aCodecLabel->setEnabled( b_trans );
154     ui.aCodecBox->setEnabled( b_trans );
155     ui.aBitrateLabel->setEnabled( b_trans );
156     ui.aBitrateSpin->setEnabled( b_trans );
157     ui.aChannelsLabel->setEnabled( b_trans );
158     ui.aChannelsSpin->setEnabled( b_trans );
159 }
160
161 void SoutDialog::setSTranscodeOptions( bool b_trans )
162 {
163     ui.subsCodecBox->setEnabled( b_trans );
164     ui.subsOverlay->setEnabled( b_trans );
165 }
166
167 void SoutDialog::setRawOptions( bool b_raw )
168 {
169     if ( b_raw )
170     {
171         ui.tabWidget->setDisabled( true );
172     }
173     else
174     {
175         SoutDialog::setOptions();
176     }
177 }
178
179 int indexFromItemData( QComboBox *aCombo, QString aString )
180 {
181     for( int i=0; i < aCombo->count(); i++ )
182     {
183         if( aCombo->itemData( i ).toString() == aString ) return i;
184     }
185     return -1;
186 }
187
188 void SoutDialog::setOptions()
189 {
190     QString profileString = ui.profileBox->itemData( ui.profileBox->currentIndex() ).toString();
191     msg_Dbg( p_intf, "Profile Used: %s",  qta( profileString ));
192     int index;
193
194 #define setProfile( muxName, hasVideo, vCodecName, hasAudio, aCodecName ) \
195     { \
196         ui.muxName ##Mux->setChecked( true ); \
197         \
198         ui.transcodeAudio->setChecked( hasAudio ); \
199         index = indexFromItemData( ui.aCodecBox, vCodecName );  \
200         if( index >= 0 ) ui.aCodecBox->setCurrentIndex( index ); \
201         \
202         ui.transcodeVideo->setChecked( hasVideo ); \
203         index = indexFromItemData( ui.aCodecBox, vCodecName );  \
204         if( index >=0 ) ui.vCodecBox->setCurrentIndex( index ); \
205     }
206
207     /* ADD HERE the profiles you want and need */
208     if( profileString == "IPod" ) setProfile( MP4, true, "mp4a", true, "mp4v" )
209     else if( profileString == "XBox" ) setProfile( ASF, true, "wma", true, "WMV2" )
210
211         /* If the profile is not a custom one, then disable the tabWidget */
212         if ( profileString == "Custom" )
213         {
214             ui.tabWidget->setEnabled( true );
215         }
216         else
217         {
218             ui.tabWidget->setDisabled( true );
219         }
220
221     /* Update the MRL !! */
222     updateMRL();
223 }
224
225 void SoutDialog::toggleSout()
226 {
227     //Toggle all the streaming options.
228     TOGGLEV( ui.HTTPOutput ) ; TOGGLEV( ui.UDPOutput ) ; TOGGLEV( ui.MMSHOutput ) ;
229     TOGGLEV( ui.HTTPEdit ) ; TOGGLEV( ui.UDPEdit ) ; TOGGLEV( ui.MMSHEdit ) ;
230     TOGGLEV( ui.HTTPLabel ) ; TOGGLEV( ui.UDPLabel ) ; TOGGLEV( ui.MMSHLabel ) ;
231     TOGGLEV( ui.HTTPPortLabel ) ; TOGGLEV( ui.UDPPortLabel ) ; TOGGLEV( ui.MMSHPortLabel ) ;
232     TOGGLEV( ui.HTTPPort ) ; TOGGLEV( ui.UDPPort ) ; TOGGLEV( ui.MMSHPort ) ;
233
234     TOGGLEV( ui.sap ); TOGGLEV( ui.sapName );
235     TOGGLEV( ui.sapGroup ); TOGGLEV( ui.sapGroupLabel );
236     TOGGLEV( ui.ttlLabel ); TOGGLEV( ui.ttl );
237
238     if( b_transcode_only ) okButton->setText( "&Save" );
239     else okButton->setText( "&Stream" );
240
241     updateGeometry();
242 }
243
244 void SoutDialog::ok()
245 {
246     mrl = ui.mrlEdit->text();
247     accept();
248 }
249 void SoutDialog::cancel()
250 {
251     mrl = ui.mrlEdit->text();
252     reject();
253 }
254
255 void SoutDialog::updateMRL()
256 {
257     sout_gui_descr_t sout;
258     memset( &sout, 0, sizeof( sout_gui_descr_t ) );
259
260     sout.b_local = ui.localOutput->isChecked();
261     sout.b_file = ui.fileOutput->isChecked();
262     sout.b_http = ui.HTTPOutput->isChecked();
263     sout.b_mms = ui.MMSHOutput->isChecked();
264     sout.b_udp = ui.UDPOutput->isChecked();
265     sout.b_sap = ui.sap->isChecked();
266     sout.b_all_es = ui.soutAll->isChecked();
267     sout.psz_vcodec = strdup( qtu( ui.vCodecBox->itemData( ui.vCodecBox->currentIndex() ).toString() ) );
268     sout.psz_acodec = strdup( qtu( ui.aCodecBox->itemData( ui.aCodecBox->currentIndex() ).toString() ) );
269     sout.psz_scodec = strdup( qtu( ui.subsCodecBox->itemData( ui.subsCodecBox->currentIndex() ).toString() ) );
270     sout.psz_file = strdup( qtu( ui.fileEdit->text() ) );
271     sout.psz_http = strdup( qtu( ui.HTTPEdit->text() ) );
272     sout.psz_mms = strdup( qtu( ui.MMSHEdit->text() ) );
273     sout.psz_udp = strdup( qtu( ui.UDPEdit->text() ) );
274     sout.i_http = ui.HTTPPort->value();
275     sout.i_mms = ui.MMSHPort->value();
276     sout.i_udp = ui.UDPPort->value();
277     sout.i_ab = ui.aBitrateSpin->value();
278     sout.i_vb = ui.vBitrateSpin->value();
279     sout.i_channels = ui.aChannelsSpin->value();
280     sout.f_scale = atof( qta( ui.vScaleBox->currentText() ) );
281     sout.psz_group = strdup( qtu( ui.sapGroup->text() ) );
282     sout.psz_name = strdup( qtu( ui.sapName->text() ) );
283
284 #define SMUX( x, txt ) if( ui.x->isChecked() ) sout.psz_mux = strdup( txt );
285     SMUX( PSMux, "ps" );
286     SMUX( TSMux, "ts" );
287     SMUX( MPEG1Mux, "mpeg" );
288     SMUX( OggMux, "ogg" );
289     SMUX( ASFMux, "asf" );
290     SMUX( MP4Mux, "mp4" );
291     SMUX( MOVMux, "mov" );
292     SMUX( WAVMux, "wav" );
293     SMUX( RAWMux, "raw" );
294     SMUX( FLVMux, "flv" );
295
296     bool trans = false;
297     bool more = false;
298
299     if ( ui.transcodeVideo->isChecked() || ui.transcodeAudio->isChecked() )
300     {
301         if ( ui.transcodeVideo->isChecked() )
302         {
303             mrl = ":sout=#transcode{";
304             mrl.append( "vcodec=" );
305             mrl.append( sout.psz_vcodec );
306             mrl.append( "," );
307             mrl.append( "vb=" );
308             mrl.append( QString::number( sout.i_vb,10 ) );
309             mrl.append( "," );
310             mrl.append( "scale=" );
311             mrl.append( QString::number( sout.f_scale ) );
312             trans = true;
313         }
314
315         if ( ui.transcodeAudio->isChecked() )
316         {
317             if ( trans )
318             {
319                 mrl.append( "," );
320             }
321             else
322             {
323                 mrl = ":sout=#transcode{";
324             }
325             mrl.append( "acodec=" );
326             mrl.append( sout.psz_acodec );
327             mrl.append( "," );
328             mrl.append( "ab=" );
329             mrl.append( QString::number( sout.i_ab,10 ) );
330             mrl.append( "," );
331             mrl.append( "channels=" );
332             mrl.append( QString::number( sout.i_channels,10 ) );
333             trans = true;
334         }
335         mrl.append( "}" );
336     }
337
338     if ( sout.b_local || sout.b_file || sout.b_http || sout.b_mms || sout.b_udp )
339     {
340
341 #define ISMORE() if ( more ) mrl.append( "," );
342
343         if ( trans )
344         {
345             mrl.append( ":duplicate{" );
346         }
347         else
348         {
349             mrl = ":sout=#";
350         }
351
352         if ( sout.b_local )
353         {
354             ISMORE();
355             mrl.append( "dst=display" );
356             more = true;
357         }
358
359         if ( sout.b_file )
360         {
361             ISMORE();
362             mrl.append( "dst=std{access=file,mux=" );
363             mrl.append( sout.psz_mux );
364             mrl.append( ",dst=" );
365             mrl.append( sout.psz_file );
366             mrl.append( "}" );
367             more = true;
368         }
369
370         if ( sout.b_http )
371         {
372             ISMORE();
373             mrl.append( "dst=std{access=http,mux=" );
374             mrl.append( sout.psz_mux );
375             mrl.append( ",dst=" );
376             mrl.append( sout.psz_http );
377             mrl.append( ":" );
378             mrl.append( QString::number( sout.i_http,10 ) );
379             mrl.append( "}" );
380             more = true;
381         }
382
383         if ( sout.b_mms )
384         {
385             ISMORE();
386             mrl.append( "dst=std{access=mmsh,mux=" );
387             mrl.append( sout.psz_mux );
388             mrl.append( ",dst=" );
389             mrl.append( sout.psz_mms );
390             mrl.append( ":" );
391             mrl.append( QString::number( sout.i_mms,10 ) );
392             mrl.append( "}" );
393             more = true;
394         }
395
396         if ( sout.b_udp )
397         {
398             ISMORE();
399             mrl.append( "dst=std{access=udp,mux=" );
400             mrl.append( sout.psz_mux );
401             mrl.append( ",dst=" );
402             mrl.append( sout.psz_udp );
403             mrl.append( ":" );
404             mrl.append( QString::number( sout.i_udp,10 ) );
405             if ( sout.b_sap )
406             {
407                 mrl.append( ",sap," );
408                 mrl.append( "group=\"" );
409                 mrl.append( sout.psz_group );
410                 mrl.append( "\"," );
411                 mrl.append( "name=\"" );
412                 mrl.append( sout.psz_name );
413                 mrl.append( "\"" );
414             }
415             mrl.append( "}" );
416             more = true;
417         }
418
419         if ( trans )
420         {
421             mrl.append( "}" );
422         }
423     }
424
425     if ( sout.b_all_es )
426         mrl.append( ":sout-all" );
427
428     ui.mrlEdit->setText( mrl );
429     free( sout.psz_acodec ); free( sout.psz_vcodec ); free( sout.psz_scodec );
430     free( sout.psz_file );free( sout.psz_http ); free( sout.psz_mms );
431     free( sout.psz_udp ); free( sout.psz_mux );
432     free( sout.psz_name ); free( sout.psz_group );
433 }