You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1088 lines
40 KiB

/*****************************************************************************
* streamout.cpp : wxWindows plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2004 the VideoLAN team
* $Id$
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#include "dialogs/streamout.hpp"
#include <wx/spinctrl.h>
#include <wx/combobox.h>
#include <wx/statline.h>
#include "streamdata.h"
#ifndef wxRB_SINGLE
# define wxRB_SINGLE 0
#endif
/*****************************************************************************
* Event Table.
*****************************************************************************/
/* IDs for the controls and the menu commands */
enum
{
Notebook_Event = wxID_HIGHEST,
MRL_Event,
FileBrowse_Event,
FileName_Event,
FileDump_Event,
AccessType1_Event, AccessType2_Event, AccessType3_Event,
AccessType4_Event, AccessType5_Event, AccessType6_Event,
NetPort1_Event, NetPort2_Event, NetPort3_Event, NetPort4_Event,
NetAddr1_Event, NetAddr2_Event, NetAddr3_Event, NetAddr4_Event,
EncapsulationRadio1_Event, EncapsulationRadio2_Event,
EncapsulationRadio3_Event, EncapsulationRadio4_Event,
EncapsulationRadio5_Event, EncapsulationRadio6_Event,
EncapsulationRadio7_Event, EncapsulationRadio8_Event,
EncapsulationRadio9_Event, EncapsulationRadio10_Event,
VideoTranscEnable_Event, VideoTranscCodec_Event, VideoTranscBitrate_Event,
VideoTranscScale_Event,
AudioTranscEnable_Event, AudioTranscCodec_Event, AudioTranscBitrate_Event,
AudioTranscChans_Event,
SubtitlesTranscEnable_Event, SubtitlesTranscCodec_Event,
SubtitlesOverlayEnable_Event,
SAPMisc_Event, AnnounceGroup_Event, AnnounceAddr_Event,
SoutAll_Event
};
BEGIN_EVENT_TABLE(SoutDialog, wxDialog)
/* Button events */
EVT_BUTTON(wxID_OK, SoutDialog::OnOk)
EVT_BUTTON(wxID_CANCEL, SoutDialog::OnCancel)
/* Events generated by the access output panel */
EVT_CHECKBOX(AccessType1_Event, SoutDialog::OnAccessTypeChange)
EVT_CHECKBOX(AccessType2_Event, SoutDialog::OnAccessTypeChange)
EVT_CHECKBOX(AccessType3_Event, SoutDialog::OnAccessTypeChange)
EVT_CHECKBOX(AccessType4_Event, SoutDialog::OnAccessTypeChange)
EVT_CHECKBOX(AccessType5_Event, SoutDialog::OnAccessTypeChange)
EVT_CHECKBOX(AccessType6_Event, SoutDialog::OnAccessTypeChange)
EVT_TEXT(FileName_Event, SoutDialog::OnFileChange)
EVT_BUTTON(FileBrowse_Event, SoutDialog::OnFileBrowse)
EVT_CHECKBOX(FileDump_Event, SoutDialog::OnFileDump)
EVT_TEXT(NetPort1_Event, SoutDialog::OnNetChange)
EVT_TEXT(NetAddr1_Event, SoutDialog::OnNetChange)
EVT_TEXT(NetPort2_Event, SoutDialog::OnNetChange)
EVT_TEXT(NetAddr2_Event, SoutDialog::OnNetChange)
EVT_TEXT(NetPort3_Event, SoutDialog::OnNetChange)
EVT_TEXT(NetAddr3_Event, SoutDialog::OnNetChange)
EVT_TEXT(NetPort4_Event, SoutDialog::OnNetChange)
EVT_TEXT(NetAddr4_Event, SoutDialog::OnNetChange)
/* Events generated by the encapsulation panel */
EVT_RADIOBUTTON(EncapsulationRadio1_Event,
SoutDialog::OnEncapsulationChange)
EVT_RADIOBUTTON(EncapsulationRadio2_Event,
SoutDialog::OnEncapsulationChange)
EVT_RADIOBUTTON(EncapsulationRadio3_Event,
SoutDialog::OnEncapsulationChange)
EVT_RADIOBUTTON(EncapsulationRadio4_Event,
SoutDialog::OnEncapsulationChange)
EVT_RADIOBUTTON(EncapsulationRadio5_Event,
SoutDialog::OnEncapsulationChange)
EVT_RADIOBUTTON(EncapsulationRadio6_Event,
SoutDialog::OnEncapsulationChange)
EVT_RADIOBUTTON(EncapsulationRadio7_Event,
SoutDialog::OnEncapsulationChange)
EVT_RADIOBUTTON(EncapsulationRadio8_Event,
SoutDialog::OnEncapsulationChange)
EVT_RADIOBUTTON(EncapsulationRadio9_Event,
SoutDialog::OnEncapsulationChange)
/* Events generated by the transcoding panel */
EVT_CHECKBOX(VideoTranscEnable_Event, SoutDialog::OnTranscodingEnable)
EVT_CHECKBOX(AudioTranscEnable_Event, SoutDialog::OnTranscodingEnable)
EVT_CHECKBOX(SubtitlesTranscEnable_Event, SoutDialog::OnTranscodingEnable)
EVT_CHECKBOX(SubtitlesOverlayEnable_Event, SoutDialog::OnTranscodingEnable)
EVT_COMBOBOX(VideoTranscCodec_Event, SoutDialog::OnTranscodingChange)
EVT_TEXT(VideoTranscCodec_Event, SoutDialog::OnTranscodingChange)
EVT_COMBOBOX(AudioTranscCodec_Event, SoutDialog::OnTranscodingChange)
EVT_TEXT(AudioTranscCodec_Event, SoutDialog::OnTranscodingChange)
EVT_COMBOBOX(VideoTranscBitrate_Event, SoutDialog::OnTranscodingChange)
EVT_TEXT(VideoTranscBitrate_Event, SoutDialog::OnTranscodingChange)
EVT_COMBOBOX(AudioTranscBitrate_Event, SoutDialog::OnTranscodingChange)
EVT_TEXT(AudioTranscBitrate_Event, SoutDialog::OnTranscodingChange)
EVT_COMBOBOX(VideoTranscScale_Event, SoutDialog::OnTranscodingChange)
EVT_TEXT(VideoTranscScale_Event, SoutDialog::OnTranscodingChange)
EVT_COMBOBOX(AudioTranscChans_Event, SoutDialog::OnTranscodingChange)
EVT_TEXT(AudioTranscChans_Event, SoutDialog::OnTranscodingChange)
EVT_COMBOBOX(SubtitlesTranscCodec_Event, SoutDialog::OnTranscodingChange)
EVT_TEXT(SubtitlesTranscCodec_Event, SoutDialog::OnTranscodingChange)
/* Events generated by the misc panel */
EVT_CHECKBOX(SAPMisc_Event, SoutDialog::OnSAPMiscChange)
EVT_TEXT(AnnounceGroup_Event, SoutDialog::OnAnnounceGroupChange)
EVT_TEXT(AnnounceAddr_Event, SoutDialog::OnAnnounceAddrChange)
EVT_CHECKBOX(SoutAll_Event, SoutDialog::OnAnnounceGroupChange)
END_EVENT_TABLE()
/*****************************************************************************
* Constructor.
*****************************************************************************/
SoutDialog::SoutDialog( intf_thread_t *_p_intf, wxWindow* _p_parent ):
wxDialog( _p_parent, -1, wxU(_("Stream output")),
wxDefaultPosition, wxDefaultSize, wxDEFAULT_FRAME_STYLE )
{
/* Initializations */
p_intf = _p_intf;
p_parent = _p_parent;
SetIcon( *p_intf->p_sys->p_icon );
/* Create a panel to put everything in */
wxPanel *panel = new wxPanel( this, -1 );
panel->SetAutoLayout( TRUE );
/* Create MRL combobox */
wxBoxSizer *mrl_sizer_sizer = new wxBoxSizer( wxHORIZONTAL );
wxStaticBox *mrl_box = new wxStaticBox( panel, -1,
wxU(_("Stream output MRL")) );
wxStaticBoxSizer *mrl_sizer = new wxStaticBoxSizer( mrl_box,
wxHORIZONTAL );
wxStaticText *mrl_label = new wxStaticText( panel, -1,
wxU(_("Target:")));
mrl_combo = new wxComboBox( panel, MRL_Event, wxT(""),
wxPoint(20,25), wxSize(120, -1) );
mrl_combo->SetToolTip( wxU(_("Specifies the MRL. This can be specified "
"directly or filled in automatically by adjusting the "
"stream settings.")) );
mrl_sizer->Add( mrl_label, 0, wxALL | wxALIGN_CENTER, 5 );
mrl_sizer->Add( mrl_combo, 1, wxALL | wxALIGN_CENTER, 5 );
mrl_sizer_sizer->Add( mrl_sizer, 1, wxEXPAND | wxALL, 5 );
/* Create the access output panel */
access_panel = AccessPanel( panel );
/* Create the output encapsulation panel */
encapsulation_panel = EncapsulationPanel( panel );
/* Create the transcoding panel */
transcoding_panel = TranscodingPanel( panel );
/* Create the Misc panel */
misc_panel = MiscPanel( panel );
/* Create the buttons */
wxButton *ok_button = new wxButton( panel, wxID_OK );
ok_button->SetDefault();
wxButton *cancel_button = new wxButton( panel, wxID_CANCEL );
/* Place everything in sizers */
wxStdDialogButtonSizer *button_sizer = new wxStdDialogButtonSizer;
button_sizer->AddButton( ok_button );
button_sizer->AddButton( cancel_button );
button_sizer->Realize();
wxBoxSizer *main_sizer = new wxBoxSizer( wxVERTICAL );
wxBoxSizer *panel_sizer = new wxBoxSizer( wxVERTICAL );
panel_sizer->Add( mrl_sizer_sizer, 0, wxEXPAND, 5 );
panel_sizer->Add( access_panel, 1, wxEXPAND | wxALL, 5 );
panel_sizer->Add( encapsulation_panel, 0, wxEXPAND | wxALL, 5 );
panel_sizer->Add( transcoding_panel, 0, wxEXPAND | wxALL, 5 );
panel_sizer->Add( misc_panel, 0, wxEXPAND | wxALL, 5 );
panel_sizer->Add( button_sizer, 0, wxEXPAND | wxALL, 5 );
panel_sizer->Layout();
panel->SetSizerAndFit( panel_sizer );
main_sizer->Add( panel, 1, wxGROW, 0 );
main_sizer->Layout();
SetSizerAndFit( main_sizer );
}
SoutDialog::~SoutDialog()
{
}
wxArrayString SoutDialog::GetOptions()
{
return SeparateEntries( mrl_combo->GetValue() );
}
/*****************************************************************************
* Private methods.
*****************************************************************************/
void SoutDialog::UpdateMRL()
{
/* Check the demux dump option */
if( dump_checkbox->IsChecked() )
{
wxString dumpfile;
if( file_combo->GetValue().size() )
dumpfile = wxT(" :demuxdump-file=\"") +
file_combo->GetValue() + wxT("\"");
mrl_combo->SetValue( wxT(":demux=dump") + dumpfile );
return;
}
/* Let's start with the transcode options */
wxString transcode;
if( video_transc_checkbox->IsChecked() ||
audio_transc_checkbox->IsChecked() ||
subtitles_transc_checkbox->IsChecked() ||
subtitles_overlay_checkbox->IsChecked() )
{
transcode = wxT("transcode{");
if( video_transc_checkbox->IsChecked() )
{
transcode += wxT("vcodec=") + video_codec_combo->GetValue();
transcode += wxT(",vb=") + video_bitrate_combo->GetValue();
transcode += wxT(",scale=") + video_scale_combo->GetValue();
if( audio_transc_checkbox->IsChecked() ||
subtitles_transc_checkbox->IsChecked() ||
subtitles_overlay_checkbox->IsChecked() )
transcode += wxT(",");
}
if( audio_transc_checkbox->IsChecked() )
{
transcode += wxT("acodec=") + audio_codec_combo->GetValue();
transcode += wxT(",ab=") + audio_bitrate_combo->GetValue();
transcode += wxT(",channels=") + audio_channels_combo->GetValue();
if( subtitles_transc_checkbox->IsChecked() ||
subtitles_overlay_checkbox->IsChecked() )
transcode += wxT(",");
}
if( subtitles_transc_checkbox->IsChecked() )
{
transcode += wxT("scodec=") + subtitles_codec_combo->GetValue();
}
if( subtitles_overlay_checkbox->IsChecked() )
{
transcode += wxT("soverlay");
}
transcode += wxT("}");
}
/* Encapsulation */
wxString encapsulation;
switch( i_encapsulation_type )
{
case PS_ENCAPSULATION:
encapsulation = wxT("ps");
break;
case MPEG1_ENCAPSULATION:
encapsulation = wxT("mpeg1");
break;
case AVI_ENCAPSULATION:
encapsulation = wxT("avi");
break;
case OGG_ENCAPSULATION:
encapsulation = wxT("ogg");
break;
case RAW_ENCAPSULATION:
encapsulation = wxT("raw");
break;
case MP4_ENCAPSULATION:
encapsulation = wxT("mp4");
break;
case MOV_ENCAPSULATION:
encapsulation = wxT("mov");
break;
case ASF_ENCAPSULATION:
encapsulation = wxT("asf");
break;
case WAV_ENCAPSULATION:
encapsulation = wxT("wav");
break;
case TS_ENCAPSULATION:
default:
encapsulation = wxT("ts");
break;
}
/* Now continue with the duplicate option */
wxString dup_opts;
if( access_checkboxes[PLAY_ACCESS_OUT]->IsChecked() )
{
dup_opts += wxT("dst=display");
}
if( access_checkboxes[FILE_ACCESS_OUT]->IsChecked() )
{
if( !dup_opts.IsEmpty() ) dup_opts += wxT(",");
dup_opts += wxT("dst=std{access=file,mux=");
dup_opts += encapsulation + wxT(",dst=\"");
dup_opts += file_combo->GetValue() + wxT("\"}");
}
if( access_checkboxes[HTTP_ACCESS_OUT]->IsChecked() )
{
if( !dup_opts.IsEmpty() ) dup_opts += wxT(",");
dup_opts += wxT("dst=std{access=http,mux=");
dup_opts += encapsulation + wxT(",dst=");
dup_opts += net_addrs[HTTP_ACCESS_OUT]->GetLineText(0);
dup_opts += wxString::Format( wxT(":%d"),
net_ports[HTTP_ACCESS_OUT]->GetValue() );
dup_opts += wxT("}");
}
if( access_checkboxes[MMSH_ACCESS_OUT]->IsChecked() )
{
if( !dup_opts.IsEmpty() ) dup_opts += wxT(",");
dup_opts += wxT("dst=std{access=mmsh,mux=");
dup_opts += encapsulation;
if( i_encapsulation_type == ASF_ENCAPSULATION ) dup_opts += wxT("h");
dup_opts += wxT(",dst=");
dup_opts += net_addrs[MMSH_ACCESS_OUT]->GetLineText(0);
dup_opts += wxString::Format( wxT(":%d"),
net_ports[MMSH_ACCESS_OUT]->GetValue() );
dup_opts += wxT("}");
}
if( access_checkboxes[RTP_ACCESS_OUT]->IsChecked() )
{
if( !dup_opts.IsEmpty() ) dup_opts += wxT(",");
dup_opts += wxT("dst=std{access=rtp,mux=");
dup_opts += encapsulation + wxT(",dst=");
wxString rtp_addr = net_addrs[RTP_ACCESS_OUT]->GetLineText(0);
if ((rtp_addr[0u] != '[') && (rtp_addr.Find(':') != -1))
{
dup_opts += wxT ("[") + rtp_addr + wxT ("]");
}
else
{
dup_opts += rtp_addr;
}
dup_opts += wxString::Format( wxT(":%d"),
net_ports[RTP_ACCESS_OUT]->GetValue() );
/* SAP if RTP */
if( sap_checkbox->IsChecked() )
{
dup_opts += wxT(",sap");
if( ! announce_group->GetLineText(0).IsEmpty() )
{
dup_opts += wxT(",group=\"");
dup_opts += announce_group->GetLineText(0);
dup_opts += wxT("\"");
}
if( ! announce_addr->GetLineText(0).IsEmpty() )
{
dup_opts += wxT(",name=\"");
dup_opts += announce_addr->GetLineText(0);
dup_opts += wxT("\"");
}
}
dup_opts += wxT("}");
}
if( access_checkboxes[UDP_ACCESS_OUT]->IsChecked() )
{
if( !dup_opts.IsEmpty() ) dup_opts += wxT(",");
dup_opts += wxT("dst=std{access=udp,mux=");
dup_opts += encapsulation + wxT(",dst=");
wxString udp_addr = net_addrs[UDP_ACCESS_OUT]->GetLineText(0);
if ((udp_addr[0u] != '[') && (udp_addr.Find(':') != -1))
{
dup_opts += wxT ("[") + udp_addr + wxT ("]");
}
else
{
dup_opts += udp_addr;
}
dup_opts += wxString::Format( wxT(":%d"),
net_ports[UDP_ACCESS_OUT]->GetValue() );
/* SAP if UDP */
if( sap_checkbox->IsChecked() )
{
dup_opts += wxT(",sap");
if( ! announce_group->GetLineText(0).IsEmpty() )
{
dup_opts += wxT(",group=\"");
dup_opts += announce_group->GetLineText(0);
dup_opts += wxT("\"");
}
if( ! announce_addr->GetLineText(0).IsEmpty() )
{
dup_opts += wxT(",name=\"");
dup_opts += announce_addr->GetLineText(0);
dup_opts += wxT("\"");
}
}
dup_opts += wxT("}");
}
wxString duplicate;
if( !dup_opts.IsEmpty() )
{
if( !transcode.IsEmpty() ) duplicate = wxT(":");
duplicate += wxT("duplicate{") + dup_opts + wxT("}");
}
wxString misc;
if( (!transcode.IsEmpty() || !duplicate.IsEmpty()) &&
sout_all_checkbox->IsChecked() )
{
misc = wxT(" :sout-all");
}
if( !transcode.IsEmpty() || !duplicate.IsEmpty() )
mrl_combo->SetValue( wxT(":sout=#") + transcode + duplicate + misc );
else
mrl_combo->SetValue( wxT("") );
}
wxPanel *SoutDialog::AccessPanel( wxWindow* parent )
{
int i;
wxPanel *panel = new wxPanel( parent, -1, wxDefaultPosition,
wxSize(200, 200) );
wxStaticBox *panel_box = new wxStaticBox( panel, -1,
wxU(_("Outputs")) );
wxStaticBoxSizer *panel_sizer = new wxStaticBoxSizer( panel_box,
wxVERTICAL );
/*wxFlexGridSizer *sizer = new wxFlexGridSizer( 2, 4, 20 );*/
wxFlexGridSizer *sizer = new wxFlexGridSizer( 2, 0, 20 );
static const wxString access_output_array[] =
{
wxU(_("Play locally")),
wxU(_("File")),
wxU(_("HTTP")),
wxU(_("MMSH")),
wxU(_("RTP")),
wxU(_("UDP")),
};
for( i=0; i < ACCESS_OUT_NUM; i++ )
{
access_checkboxes[i] = new wxCheckBox( panel, AccessType1_Event + i,
access_output_array[i] );
access_subpanels[i] = new wxPanel( panel, -1 );
}
/* Play locally row */
wxFlexGridSizer *subpanel_sizer;
wxStaticText *label;
label = new wxStaticText( access_subpanels[0], -1, wxT("") );
subpanel_sizer = new wxFlexGridSizer( 1, 1, 20 );
subpanel_sizer->Add( label, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
access_subpanels[0]->SetSizerAndFit( subpanel_sizer );
access_subpanels[0]->Hide();
/* File row */
/*subpanel_sizer = new wxFlexGridSizer( 3, 2, 20 );*/
subpanel_sizer = new wxFlexGridSizer( 4, 1, 10);
label = new wxStaticText( access_subpanels[1], -1, wxU(_("Filename")) );
file_combo = new wxComboBox( access_subpanels[1], FileName_Event, wxT(""),
wxPoint(20,25), wxSize(200, -1) );
wxButton *browse_button = new wxButton( access_subpanels[1],
FileBrowse_Event, wxU(_("Browse...")) );
subpanel_sizer->Add( label, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
subpanel_sizer->Add( file_combo, 1,
wxEXPAND | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
subpanel_sizer->Add( browse_button, 0,
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL );
/*subpanel_sizer->Add( new wxPanel(access_subpanels[1], -1), 0,*/
/* wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );*/
dump_checkbox = new wxCheckBox( access_subpanels[1], FileDump_Event,
wxU(_("Dump raw input")) );
subpanel_sizer->Add( dump_checkbox, 0,
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL | wxTOP, 5 );
access_subpanels[1]->SetSizerAndFit( subpanel_sizer );
/* Net rows */
for( i = HTTP_ACCESS_OUT; i < ACCESS_OUT_NUM; i++ )
{
subpanel_sizer = new wxFlexGridSizer( 4, 1, 20 );
label = new wxStaticText( access_subpanels[i], -1, wxU(_("Address")) );
net_addrs[i] = new wxTextCtrl( access_subpanels[i],
NetAddr1_Event + i - HTTP_ACCESS_OUT,
wxT(""), wxDefaultPosition,
wxSize( 200, -1 ), wxTE_PROCESS_ENTER);
subpanel_sizer->Add( label, 0,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
subpanel_sizer->Add( net_addrs[i], 1, wxEXPAND |
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL );
int val = config_GetInt( p_intf, "server-port" );
label = new wxStaticText( access_subpanels[i], -1, wxU(_("Port")) );
net_ports[i] = new wxSpinCtrl( access_subpanels[i],
NetPort1_Event + i - HTTP_ACCESS_OUT,
wxString::Format(wxT("%d"), val),
wxDefaultPosition, wxDefaultSize,
wxSP_ARROW_KEYS,
0, 65535, val );
subpanel_sizer->Add( label, 0,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
subpanel_sizer->Add( net_ports[i], 0,
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL );
access_subpanels[i]->SetSizerAndFit( subpanel_sizer );
}
/* Stuff everything into the main panel */
for( i=1; i < ACCESS_OUT_NUM; i++ )
{
sizer->Add( access_checkboxes[i], 0,
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL | wxALL, 5 );
sizer->Add( access_subpanels[i], 1, wxEXPAND | wxALIGN_CENTER_VERTICAL
| wxALIGN_LEFT | wxALL, 5 );
}
panel_sizer->Add( access_checkboxes[0], 0,
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL | wxALL, 5 );
panel_sizer->Add( sizer, 1, wxEXPAND | wxTOP, 3 );
panel->SetSizerAndFit( panel_sizer );
/* Update access type panel */
for( i=1; i < ACCESS_OUT_NUM; i++ )
{
access_subpanels[i]->Disable();
}
return panel;
}
wxPanel *SoutDialog::MiscPanel( wxWindow* parent )
{
wxPanel *panel = new wxPanel( parent, -1, wxDefaultPosition,
wxSize(200, 200) );
wxStaticBox *panel_box = new wxStaticBox( panel, -1,
wxU(_("Miscellaneous")) );
wxStaticBoxSizer *panel_sizer = new wxStaticBoxSizer( panel_box,
wxVERTICAL );
/* Announce Row */
misc_subpanels[ANN_MISC_SOUT] = new wxPanel( panel, -1 );
misc_subpanels[TTL_MISC_SOUT] = new wxPanel( panel, -1 );
wxFlexGridSizer *subpanel_sizer = new wxFlexGridSizer( 3, 4, 20 );
wxFlexGridSizer *subpanel_sub_sizer = new wxFlexGridSizer( 5, 4, 20 );
wxFlexGridSizer *subpanel2_sizer = new wxFlexGridSizer( 3, 4, 20 );
sap_checkbox = new wxCheckBox( misc_subpanels[ANN_MISC_SOUT],SAPMisc_Event,
wxU(_("SAP announce")) );
wxStaticText *label_g = new wxStaticText( misc_subpanels[ANN_MISC_SOUT], -1,
wxU(_("Group name")) );
announce_group = new wxTextCtrl( misc_subpanels[ANN_MISC_SOUT],
AnnounceGroup_Event,
wxT(""), wxDefaultPosition,
wxSize( 100, -1 ), wxTE_PROCESS_ENTER);
wxStaticText *label = new wxStaticText( misc_subpanels[ANN_MISC_SOUT], -1,
wxU(_("Channel name")) );
announce_addr = new wxTextCtrl( misc_subpanels[ANN_MISC_SOUT],
AnnounceAddr_Event,
wxT(""), wxDefaultPosition,
wxSize( 100, -1 ), wxTE_PROCESS_ENTER);
sout_all_checkbox = new wxCheckBox( misc_subpanels[TTL_MISC_SOUT],
SoutAll_Event, wxU(_("Select all elementary streams")) );
wxStaticText *ttl_label = new wxStaticText( misc_subpanels[TTL_MISC_SOUT],
-1,
wxU(_("Time-To-Live (TTL)")) );
ttl_spin = new wxSpinCtrl( misc_subpanels[TTL_MISC_SOUT], -1,
wxEmptyString, wxDefaultPosition, wxDefaultSize,
0, 1, 255, config_GetInt( p_intf, "ttl" ) );
subpanel_sizer->Add( sap_checkbox, 0,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
subpanel_sub_sizer->Add( label_g, 0, wxALIGN_RIGHT |
wxALIGN_CENTER_VERTICAL );
subpanel_sub_sizer->Add( announce_group, 1, wxEXPAND |
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL );
subpanel_sub_sizer->Add( label, 0, wxALIGN_RIGHT |
wxALIGN_CENTER_VERTICAL );
subpanel_sub_sizer->Add( announce_addr, 1, wxEXPAND |
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL );
subpanel_sizer->Add( subpanel_sub_sizer, 1, wxEXPAND |
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL );
subpanel2_sizer->Add( sout_all_checkbox, 1,
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL | wxLEFT, 5 );
subpanel2_sizer->Add( ttl_label, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
subpanel2_sizer->Add( ttl_spin, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
misc_subpanels[ANN_MISC_SOUT]->SetSizerAndFit( subpanel_sizer );
misc_subpanels[TTL_MISC_SOUT]->SetSizerAndFit( subpanel2_sizer );
/* Stuff everything into the main panel */
panel_sizer->Add( misc_subpanels[ANN_MISC_SOUT], 1,
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL | wxLEFT, 5 );
panel_sizer->Add( misc_subpanels[TTL_MISC_SOUT], 1,
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL | wxALL, 5 );
panel->SetSizerAndFit( panel_sizer );
/* Update misc panel */
misc_subpanels[ANN_MISC_SOUT]->Disable();
announce_group->Disable();
announce_addr->Disable();
return panel;
}
wxPanel *SoutDialog::EncapsulationPanel( wxWindow* parent )
{
unsigned int i;
wxPanel *panel = new wxPanel( parent, -1, wxDefaultPosition,
wxSize(200, 200) );
wxStaticBox *panel_box = new wxStaticBox( panel, -1,
wxU(_("Encapsulation Method")) );
wxStaticBoxSizer *panel_sizer = new wxStaticBoxSizer( panel_box,
wxHORIZONTAL );
static const wxString encapsulation_array[] =
{
wxT("MPEG TS"),
wxT("MPEG PS"),
wxT("MPEG 1"),
wxT("Ogg"),
wxT("ASF"),
wxT("MP4"),
wxT("MOV"),
wxT("WAV"),
wxT("Raw")
};
/* Stuff everything into the main panel */
for( i = 0; i < WXSIZEOF(encapsulation_array); i++ )
{
encapsulation_radios[i] =
new wxRadioButton( panel, EncapsulationRadio1_Event + i,
encapsulation_array[i] );
panel_sizer->Add( encapsulation_radios[i], 0,
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL |
wxALL, 4 );
}
/* Hide avi one */
for( i = WXSIZEOF(encapsulation_array); i < ENCAPS_NUM; i++ )
{
encapsulation_radios[i] =
new wxRadioButton( panel, EncapsulationRadio1_Event + i, wxT("") );
encapsulation_radios[i]->Hide();
}
panel->SetSizerAndFit( panel_sizer );
/* Update encapsulation panel */
encapsulation_radios[TS_ENCAPSULATION]->SetValue(true);
i_encapsulation_type = TS_ENCAPSULATION;
return panel;
}
wxPanel *SoutDialog::TranscodingPanel( wxWindow* parent )
{
wxPanel *panel = new wxPanel( parent, -1, wxDefaultPosition,
wxSize(200, 200) );
wxStaticBox *panel_box = new wxStaticBox( panel, -1,
wxU(_("Transcoding options")) );
wxStaticBoxSizer *panel_sizer = new wxStaticBoxSizer( panel_box,
wxVERTICAL );
/* Create video transcoding checkox */
static const wxString wxvcodecs_array[] =
{
wxT("mp1v"),
wxT("mp2v"),
wxT("mp4v"),
wxT("DIV1"),
wxT("DIV2"),
wxT("DIV3"),
wxT("H263"),
wxT("h264"),
wxT("WMV1"),
wxT("WMV2"),
wxT("MJPG"),
wxT("theo")
};
/*
static const wxString vbitrates_array[] =
{
wxT("3072"),
wxT("2048"),
wxT("1024"),
wxT("768"),
wxT("512"),
wxT("384"),
wxT("256"),
wxT("192"),
wxT("128"),
wxT("96"),
wxT("64"),
wxT("32"),
wxT("16")
};
*/
static const wxString vscales_array[] =
{
wxT("0.25"),
wxT("0.5"),
wxT("0.75"),
wxT("1"),
wxT("1.25"),
wxT("1.5"),
wxT("1.75"),
wxT("2")
};
wxFlexGridSizer *video_sizer = new wxFlexGridSizer( 6, 1, 20 );
#if defined( __WXMSW__ )
wxFlexGridSizer *video_sub_sizer = new wxFlexGridSizer( 4, 5, 20 );
#else
wxFlexGridSizer *video_sub_sizer = new wxFlexGridSizer( 2, 5, 20 );
#endif
video_transc_checkbox =
new wxCheckBox( panel, VideoTranscEnable_Event, wxU(_("Video codec")));
video_codec_combo =
new wxComboBox( panel, VideoTranscCodec_Event, wxvcodecs_array[2],
wxPoint(20,25), wxDefaultSize,
WXSIZEOF(wxvcodecs_array),
wxvcodecs_array, wxCB_READONLY );
video_codec_combo->SetSelection(2);
wxStaticText *bitrate_label =
new wxStaticText( panel, -1, wxU(_("Bitrate (kb/s)")));
video_bitrate_combo =
new wxComboBox( panel, VideoTranscBitrate_Event, wxT("1024"),
wxPoint(20,25), wxDefaultSize,
WXSIZEOF(vbitrates_array), vbitrates_array );
wxStaticText *scale_label =
new wxStaticText( panel, -1, wxU(_("Scale")));
video_scale_combo =
new wxComboBox( panel, VideoTranscScale_Event, wxT("1"),
wxPoint(20,25), wxDefaultSize,
WXSIZEOF(vscales_array), vscales_array );
video_sizer->Add( video_transc_checkbox, 0,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
video_sizer->Add( video_codec_combo, 1,
wxEXPAND | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
video_sub_sizer->Add( bitrate_label, 0,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
video_sub_sizer->Add( video_bitrate_combo, 1,
wxEXPAND | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
video_sub_sizer->Add( scale_label, 0,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
video_sub_sizer->Add( video_scale_combo, 1,
wxEXPAND | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
video_sizer->Add( video_sub_sizer, 1, wxEXPAND |
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL );
/* Create audio transcoding checkox */
static const wxString wxacodecs_array[] =
{
wxT("mpga"),
wxT("mp2a"),
wxT("mp3"),
wxT("mp4a"),
wxT("a52"),
wxT("vorb"),
wxT("flac"),
wxT("spx"),
wxT("s16l"),
wxT("fl32")
};
static const wxString achannels_array[] =
{
wxT("1"),
wxT("2"),
wxT("4"),
wxT("6")
};
/*
static const wxString abitrates_array[] =
{
wxT("512"),
wxT("256"),
wxT("192"),
wxT("128"),
wxT("96"),
wxT("64"),
wxT("32"),
wxT("16")
};
*/
wxFlexGridSizer *audio_sizer = new wxFlexGridSizer( 3, 1, 20 );
audio_transc_checkbox =
new wxCheckBox( panel, AudioTranscEnable_Event, wxU(_("Audio codec")));
audio_codec_combo =
new wxComboBox( panel, AudioTranscCodec_Event, wxacodecs_array[0],
wxPoint(10,25), wxDefaultSize,
WXSIZEOF(wxacodecs_array),
wxacodecs_array, wxCB_READONLY );
audio_codec_combo->SetSelection(0);
#if defined( __WXMSW__ )
wxFlexGridSizer *audio_sub_sizer = new wxFlexGridSizer( 4, 5, 20 );
#else
wxFlexGridSizer *audio_sub_sizer = new wxFlexGridSizer( 2, 5, 20 );
#endif
bitrate_label =
new wxStaticText( panel, -1, wxU(_("Bitrate (kb/s)")));
audio_bitrate_combo =
new wxComboBox( panel, AudioTranscBitrate_Event, wxT("192"),
wxPoint(10,25), wxDefaultSize,
WXSIZEOF(abitrates_array), abitrates_array );
wxStaticText *channels_label =
new wxStaticText( panel, -1, wxU(_("Channels")));
audio_channels_combo =
new wxComboBox( panel, AudioTranscChans_Event, achannels_array[1],
wxPoint(10,25), wxDefaultSize,
WXSIZEOF(achannels_array), achannels_array );
audio_channels_combo->SetSelection(1);
audio_sub_sizer->Add( bitrate_label, 0,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
audio_sub_sizer->Add( audio_bitrate_combo, 1,
wxEXPAND | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
audio_sub_sizer->Add( channels_label, 0,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
audio_sub_sizer->Add( audio_channels_combo, 1,
wxEXPAND | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
audio_sizer->Add( audio_transc_checkbox, 0,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
audio_sizer->Add( audio_codec_combo, 1,
wxEXPAND | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
audio_sizer->Add( audio_sub_sizer, 1,
wxEXPAND | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
/* Create subtitles transcoding checkox */
static const wxString wxscodecs_array[] =
{
wxT("dvbs")
};
wxFlexGridSizer *subtitles_sizer = new wxFlexGridSizer( 3, 1, 20 );
subtitles_transc_checkbox =
new wxCheckBox( panel, SubtitlesTranscEnable_Event,
wxU(_("Subtitles codec")));
subtitles_codec_combo =
new wxComboBox( panel, SubtitlesTranscCodec_Event, wxscodecs_array[0],
wxPoint(10,25), wxDefaultSize,
WXSIZEOF(wxscodecs_array),
wxscodecs_array, wxCB_READONLY );
subtitles_codec_combo->SetSelection(0);
subtitles_overlay_checkbox =
new wxCheckBox( panel, SubtitlesOverlayEnable_Event,
wxU(_("Subtitles overlay")));
subtitles_sizer->Add( subtitles_transc_checkbox, 0,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
subtitles_sizer->Add( subtitles_codec_combo, 1,
wxEXPAND | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
subtitles_sizer->Add( subtitles_overlay_checkbox, 0,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL );
/* Stuff everything into the main panel */
panel_sizer->Add( video_sizer, 0,
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL | wxALL, 5 );
panel_sizer->Add( audio_sizer, 0,
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL | wxALL, 5 );
panel_sizer->Add( subtitles_sizer, 0,
wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL | wxALL, 5 );
panel->SetSizerAndFit( panel_sizer );
/* Update transcoding panel */
wxCommandEvent event( 0, VideoTranscEnable_Event );
event.SetInt( 0 );
OnTranscodingEnable( event );
event.SetId( AudioTranscEnable_Event );
OnTranscodingEnable( event );
event.SetId( SubtitlesTranscEnable_Event );
OnTranscodingEnable( event );
return panel;
}
/*****************************************************************************
* Events methods.
*****************************************************************************/
void SoutDialog::OnOk( wxCommandEvent& WXUNUSED(event) )
{
mrl_combo->Append( mrl_combo->GetValue() );
config_PutInt( p_intf, "ttl", ttl_spin->GetValue());
EndModal( wxID_OK );
}
void SoutDialog::OnCancel( wxCommandEvent& WXUNUSED(event) )
{
EndModal( wxID_CANCEL );
}
void SoutDialog::OnMRLChange( wxCommandEvent& event )
{
//mrl = event.GetString();
}
/*****************************************************************************
* Access output panel event methods.
*****************************************************************************/
void SoutDialog::OnAccessTypeChange( wxCommandEvent& event )
{
int i;
i_access_type = event.GetId() - AccessType1_Event;
access_subpanels[i_access_type]->Enable( event.GetInt() );
switch( i_access_type )
{
case UDP_ACCESS_OUT:
case RTP_ACCESS_OUT:
misc_subpanels[ANN_MISC_SOUT]->Enable( event.GetInt() );
for( i = 1; i < ENCAPS_NUM; i++ )
{
encapsulation_radios[i]->Enable( !event.GetInt() );
}
if( event.GetInt() )
{
encapsulation_radios[TS_ENCAPSULATION]->SetValue(true);
i_encapsulation_type = TS_ENCAPSULATION;
}
break;
}
UpdateMRL();
}
/*****************************************************************************
* AnnounceMisc panel event methods.
*****************************************************************************/
void SoutDialog::OnSAPMiscChange( wxCommandEvent& event )
{
announce_addr->Enable( event.GetInt() );
announce_group->Enable( event.GetInt() );
UpdateMRL();
}
/*****************************************************************************
* SAPAddr panel event methods.
*****************************************************************************/
void SoutDialog::OnAnnounceAddrChange( wxCommandEvent& WXUNUSED(event) )
{
UpdateMRL();
}
void SoutDialog::OnAnnounceGroupChange( wxCommandEvent& WXUNUSED(event) )
{
UpdateMRL();
}
/*****************************************************************************
* File access output event methods.
*****************************************************************************/
void SoutDialog::OnFileChange( wxCommandEvent& WXUNUSED(event) )
{
UpdateMRL();
}
void SoutDialog::OnFileBrowse( wxCommandEvent& WXUNUSED(event) )
{
wxFileDialog dialog( this, wxU(_("Save file")), wxT(""), wxT(""), wxT("*"),
wxSAVE | wxOVERWRITE_PROMPT );
if( dialog.ShowModal() == wxID_OK )
{
file_combo->SetValue( dialog.GetPath() );
UpdateMRL();
}
}
void SoutDialog::OnFileDump( wxCommandEvent& event )
{
misc_panel->Enable( !event.GetInt() );
encapsulation_panel->Enable( !event.GetInt() );
transcoding_panel->Enable( !event.GetInt() );
for( int i = 0; i < ACCESS_OUT_NUM; i++ )
{
if( i != FILE_ACCESS_OUT )
{
access_checkboxes[i]->Enable( !event.GetInt() );
access_subpanels[i]->Enable( !event.GetInt() &&
access_checkboxes[i]->IsChecked() );
}
}
UpdateMRL();
}
/*****************************************************************************
* Net access output event methods.
*****************************************************************************/
void SoutDialog::OnNetChange( wxCommandEvent& WXUNUSED(event) )
{
UpdateMRL();
}
/*****************************************************************************
* Encapsulation panel event methods.
*****************************************************************************/
void SoutDialog::OnEncapsulationChange( wxCommandEvent& event )
{
i_encapsulation_type = event.GetId() - EncapsulationRadio1_Event;
UpdateMRL();
}
/*****************************************************************************
* Transcoding panel event methods.
*****************************************************************************/
void SoutDialog::OnTranscodingEnable( wxCommandEvent& event )
{
switch( event.GetId() )
{
case VideoTranscEnable_Event:
video_codec_combo->Enable( event.GetInt() );
video_bitrate_combo->Enable( event.GetInt() );
video_scale_combo->Enable( event.GetInt() );
break;
case AudioTranscEnable_Event:
audio_codec_combo->Enable( event.GetInt() );
audio_bitrate_combo->Enable( event.GetInt() );
audio_channels_combo->Enable( event.GetInt() );
break;
case SubtitlesTranscEnable_Event:
subtitles_overlay_checkbox->Enable( !event.GetInt() );
subtitles_codec_combo->Enable( event.GetInt() );
break;
case SubtitlesOverlayEnable_Event:
subtitles_transc_checkbox->Enable( !event.GetInt() );
break;
}
UpdateMRL();
}
void SoutDialog::OnTranscodingChange( wxCommandEvent& event )
{
UpdateMRL();
}