Commit 1dcec75f authored by Clément Stenac's avatar Clément Stenac

* Some progress on the wizard (still not useable)

* Fixed layout of the item info dialog
parent be50fbbe
...@@ -139,6 +139,7 @@ wxPanel *ItemInfoDialog::InfoPanel( wxWindow* parent ) ...@@ -139,6 +139,7 @@ wxPanel *ItemInfoDialog::InfoPanel( wxWindow* parent )
wxStaticBoxSizer *box_sizer = new wxStaticBoxSizer( panel_box, wxStaticBoxSizer *box_sizer = new wxStaticBoxSizer( panel_box,
wxVERTICAL ); wxVERTICAL );
wxFlexGridSizer *sizer = new wxFlexGridSizer(2,3,20);
/* URI Textbox */ /* URI Textbox */
wxStaticText *uri_label = wxStaticText *uri_label =
new wxStaticText( info_panel, -1, wxU(_("URI")) ); new wxStaticText( info_panel, -1, wxU(_("URI")) );
...@@ -147,12 +148,8 @@ wxPanel *ItemInfoDialog::InfoPanel( wxWindow* parent ) ...@@ -147,12 +148,8 @@ wxPanel *ItemInfoDialog::InfoPanel( wxWindow* parent )
wxU(p_item->input.psz_uri), wxDefaultPosition, wxSize( 300, -1 ), wxU(p_item->input.psz_uri), wxDefaultPosition, wxSize( 300, -1 ),
wxTE_PROCESS_ENTER ); wxTE_PROCESS_ENTER );
wxBoxSizer *uri_sizer = new wxBoxSizer( wxHORIZONTAL ); sizer->Add( uri_label, 0 , wxALIGN_LEFT |wxALL , 5 );
sizer->Add( uri_text, 1 , wxALIGN_RIGHT | wxALL , 5 );
uri_sizer->Add( uri_label, 0 , wxALIGN_RIGHT |wxALL , 5 );
uri_sizer->Add( uri_text, 1 , wxALIGN_RIGHT | wxALL , 5 );
uri_sizer->Layout();
box_sizer->Add( uri_sizer, 1, wxEXPAND , 5);
/* Name Textbox */ /* Name Textbox */
wxStaticText *name_label = wxStaticText *name_label =
...@@ -162,12 +159,8 @@ wxPanel *ItemInfoDialog::InfoPanel( wxWindow* parent ) ...@@ -162,12 +159,8 @@ wxPanel *ItemInfoDialog::InfoPanel( wxWindow* parent )
wxU(p_item->input.psz_name), wxDefaultPosition, wxSize( 300, -1 ), wxU(p_item->input.psz_name), wxDefaultPosition, wxSize( 300, -1 ),
wxTE_PROCESS_ENTER ); wxTE_PROCESS_ENTER );
wxBoxSizer *name_sizer = new wxBoxSizer( wxHORIZONTAL ); sizer->Add( name_label, 0 , wxALIGN_LEFT |wxALL , 5 );
sizer->Add( name_text, 1 , wxALIGN_RIGHT | wxALL , 5 );
name_sizer->Add( name_label, 0 , wxALIGN_RIGHT |wxALL , 5 );
name_sizer->Add( name_text, 1 , wxALIGN_RIGHT | wxALL , 5 );
name_sizer->Layout();
box_sizer->Add( name_sizer, 1 , wxEXPAND, 5 );
/* Author Textbox */ /* Author Textbox */
wxStaticText *author_label = wxStaticText *author_label =
...@@ -180,11 +173,8 @@ wxPanel *ItemInfoDialog::InfoPanel( wxWindow* parent ) ...@@ -180,11 +173,8 @@ wxPanel *ItemInfoDialog::InfoPanel( wxWindow* parent )
wxDefaultPosition, wxSize( 300, -1 ), wxDefaultPosition, wxSize( 300, -1 ),
wxTE_PROCESS_ENTER); wxTE_PROCESS_ENTER);
wxBoxSizer *author_sizer = new wxBoxSizer( wxHORIZONTAL ); sizer->Add( author_label, 0 , wxALIGN_LEFT | wxALL , 5 );
author_sizer->Add( author_label, 0 , wxALIGN_RIGHT | wxALL , 5 ); sizer->Add( author_text, 1 , wxALIGN_RIGHT | wxALL , 5);
author_sizer->Add( author_text, 1 , wxALIGN_RIGHT | wxALL , 5);
author_sizer->Layout();
box_sizer->Add( author_sizer, 1, wxEXPAND, 5 );
/* Treeview */ /* Treeview */
info_tree = new wxTreeCtrl( info_panel, -1, wxDefaultPosition, info_tree = new wxTreeCtrl( info_panel, -1, wxDefaultPosition,
...@@ -192,6 +182,8 @@ wxPanel *ItemInfoDialog::InfoPanel( wxWindow* parent ) ...@@ -192,6 +182,8 @@ wxPanel *ItemInfoDialog::InfoPanel( wxWindow* parent )
wxSUNKEN_BORDER |wxTR_HAS_BUTTONS | wxSUNKEN_BORDER |wxTR_HAS_BUTTONS |
wxTR_HIDE_ROOT ); wxTR_HIDE_ROOT );
sizer->Layout();
box_sizer->Add( sizer, 0, wxEXPAND, 5 );
box_sizer->Add( info_tree, 0, wxEXPAND, 5 ); box_sizer->Add( info_tree, 0, wxEXPAND, 5 );
info_sizer->Add( box_sizer, 1, wxBOTTOM, 5 ); info_sizer->Add( box_sizer, 1, wxBOTTOM, 5 );
......
...@@ -45,10 +45,13 @@ class wizInputPage; ...@@ -45,10 +45,13 @@ class wizInputPage;
enum enum
{ {
ActionRadio0_Event, ActionRadio1_Event, ActionRadio0_Event, ActionRadio1_Event,
MoreInfoStreaming_Event,
MoreInfoTranscode_Event,
Open_Event, Open_Event,
ListView_Event, ListView_Event,
InputRadio0_Event, InputRadio1_Event, InputRadio0_Event, InputRadio1_Event,
PartialEnable_Event,
MethodRadio0_Event, MethodRadio1_Event, MethodRadio0_Event, MethodRadio1_Event,
MethodRadio2_Event, MethodRadio3_Event, MethodRadio2_Event, MethodRadio3_Event,
...@@ -90,13 +93,18 @@ END_EVENT_TABLE() ...@@ -90,13 +93,18 @@ END_EVENT_TABLE()
/* Hello page */ /* Hello page */
#define HELLO_TITLE _("Streaming/Transcoding Wizard") #define HELLO_TITLE _("Streaming/Transcoding Wizard")
#define HELLO_TEXT _("Welcome, streaming wizard") #define HELLO_TEXT _("This wizard helps you to stream, transcode or" \
" save a stream")
#define HELLO_STREAMING _("Stream") #define HELLO_STREAMING _("Stream")
#define HELLO_STREAMING_DESC _("Use this to stream on a network") #define HELLO_STREAMING_DESC _("Use this to stream on a network")
#define HELLO_TRANSCODE _("Transcode") #define HELLO_TRANSCODE _("Transcode/Save")
#define HELLO_TRANSCODE_DESC _("Use this to re-encode a stream and save it to a file") #define HELLO_TRANSCODE_DESC _("Use this to re-encode a stream and save it to a file")
#define HELLO_NOTICE _("This wizard only gives access to a small subset of VLC's streaming and transcoding capabilities. Use the Open and Stream Output dialogs to get all of them") #define HELLO_NOTICE _("This wizard only gives access to a small subset of VLC's streaming and transcoding capabilities. Use the Open and Stream Output dialogs to get all of them")
#define MOREINFO_TRANSCODE _("Please notice that VLC is not very suited " \
"for file to file transcoding. You should use its transcoding " \
"features to save network streams, for example" )
/* Input page */ /* Input page */
#define INPUT_TITLE _("Choose input") #define INPUT_TITLE _("Choose input")
#define INPUT_TEXT _("Choose here your input stream") #define INPUT_TEXT _("Choose here your input stream")
...@@ -267,58 +275,6 @@ struct encap encaps_array[] = ...@@ -267,58 +275,6 @@ struct encap encaps_array[] =
* All the pages of the wizard, declaration * All the pages of the wizard, declaration
*****************************************************************************/ *****************************************************************************/
#if 0
/* The open dialog */
class WizardOpen : public wxNotebook
{
public:
protected:
wxPanel *p_parent;
wxPanel *FilePanel();
wxPanel *DiscPanel();
wxPanel *NetPanel();
wxPanel *V4LPanel();
ArrayOfAutoBuiltPanel input_tab_array;
/* Controls for the file panel */
wxComboBox *file_combo;
wxFileDialog *file_dialog;
/* Controls for the disc panel */
wxRadioBox *disc_type;
wxTextCtrl *disc_device;
wxSpinCtrl *disc_title;
wxSpinCtrl *disc_chapter;
/* The media equivalent name for a DVD names. For example,
* "Title", is "Track" for a CD-DA */
wxStaticText *disc_title_label;
wxStaticText *disc_chapter_label;
/* Indicates if the disc device control was modified */
bool b_disc_device_changed;
/* Controls for the net panel */
wxRadioBox *net_type;
int i_net_type;
wxPanel *net_subpanels[4];
wxRadioButton *net_radios[4];
wxSpinCtrl *net_ports[4];
int i_net_ports[4];
wxTextCtrl *net_addrs[4];
wxCheckBox *net_ipv6;
/* Controls for the v4l panel */
wxRadioBox *video_type;
wxTextCtrl *video_device;
wxSpinCtrl *video_channel;
wxButton *v4l_button;
V4LDialog *v4l_dialog;
wxArrayString v4l_mrl;
}
#endif
/* Declare classes */ /* Declare classes */
class wizHelloPage : public wxWizardPageSimple class wizHelloPage : public wxWizardPageSimple
{ {
...@@ -347,6 +303,7 @@ class wizInputPage : public wxWizardPage ...@@ -347,6 +303,7 @@ class wizInputPage : public wxWizardPage
wizInputPage::~wizInputPage(); wizInputPage::~wizInputPage();
void OnWizardPageChanging(wxWizardEvent& event); void OnWizardPageChanging(wxWizardEvent& event);
void OnInputChange(wxEvent& event); void OnInputChange(wxEvent& event);
void OnEnablePartial(wxCommandEvent& event);
virtual wxWizardPage *GetPrev() const; virtual wxWizardPage *GetPrev() const;
virtual wxWizardPage *GetNext() const; virtual wxWizardPage *GetNext() const;
void SetStreamingPage( wxWizardPage *page); void SetStreamingPage( wxWizardPage *page);
...@@ -364,6 +321,8 @@ class wizInputPage : public wxWizardPage ...@@ -364,6 +321,8 @@ class wizInputPage : public wxWizardPage
wxBoxSizer *mainSizer; wxBoxSizer *mainSizer;
wxArrayString mrl; wxArrayString mrl;
wxTextCtrl *mrl_text; wxTextCtrl *mrl_text;
wxTextCtrl *from_text;
wxTextCtrl *to_text;
OpenDialog *p_open_dialog; OpenDialog *p_open_dialog;
wxListView *listview; wxListView *listview;
wxPanel *open_panel; wxPanel *open_panel;
...@@ -377,6 +336,7 @@ class wizInputPage : public wxWizardPage ...@@ -377,6 +336,7 @@ class wizInputPage : public wxWizardPage
BEGIN_EVENT_TABLE(wizInputPage, wxWizardPageSimple) BEGIN_EVENT_TABLE(wizInputPage, wxWizardPageSimple)
EVT_RADIOBUTTON( InputRadio0_Event, wizInputPage::OnInputChange) EVT_RADIOBUTTON( InputRadio0_Event, wizInputPage::OnInputChange)
EVT_RADIOBUTTON( InputRadio1_Event, wizInputPage::OnInputChange) EVT_RADIOBUTTON( InputRadio1_Event, wizInputPage::OnInputChange)
EVT_CHECKBOX( PartialEnable_Event, wizInputPage::OnEnablePartial)
EVT_WIZARD_PAGE_CHANGING(-1, wizInputPage::OnWizardPageChanging) EVT_WIZARD_PAGE_CHANGING(-1, wizInputPage::OnWizardPageChanging)
END_EVENT_TABLE() END_EVENT_TABLE()
...@@ -435,6 +395,7 @@ public: ...@@ -435,6 +395,7 @@ public:
protected: protected:
DECLARE_EVENT_TABLE() DECLARE_EVENT_TABLE()
int i_method; int i_method;
wxBoxSizer *mainSizer;
wxStaticText *address_text; wxStaticText *address_text;
wxTextCtrl *address_txtctrl; wxTextCtrl *address_txtctrl;
WizardDialog * p_parent; WizardDialog * p_parent;
...@@ -563,7 +524,12 @@ wizHelloPage::wizHelloPage( wxWizard *parent) : wxWizardPageSimple(parent) ...@@ -563,7 +524,12 @@ wizHelloPage::wizHelloPage( wxWizard *parent) : wxWizardPageSimple(parent)
wxU( HELLO_TRANSCODE ) ); wxU( HELLO_TRANSCODE ) );
i_action = 0; i_action = 0;
mainSizer->Add( action_radios[0], 0, wxALL, 5 ); wxBoxSizer *stream_sizer = new wxBoxSizer( wxHORIZONTAL);
stream_sizer->Add( action_radios[0], 0, wxALL, 5 );
stream_sizer->Add( new wxButton( this, MoreInfoStreaming_Event,
wxU( _("More Info")) ), 0, wxALL, 5 );
mainSizer->Add( stream_sizer, 0, wxALL, 5 );
mainSizer->Add( new wxStaticText(this, -1, mainSizer->Add( new wxStaticText(this, -1,
wxU( vlc_wraptext( HELLO_STREAMING_DESC ,TEXTWIDTH, false))), wxU( vlc_wraptext( HELLO_STREAMING_DESC ,TEXTWIDTH, false))),
0, wxBOTTOM, 5 ); 0, wxBOTTOM, 5 );
...@@ -572,8 +538,10 @@ wizHelloPage::wizHelloPage( wxWizard *parent) : wxWizardPageSimple(parent) ...@@ -572,8 +538,10 @@ wizHelloPage::wizHelloPage( wxWizard *parent) : wxWizardPageSimple(parent)
mainSizer->Add( new wxStaticText(this, -1, mainSizer->Add( new wxStaticText(this, -1,
wxU( vlc_wraptext( HELLO_TRANSCODE_DESC ,TEXTWIDTH, false))) wxU( vlc_wraptext( HELLO_TRANSCODE_DESC ,TEXTWIDTH, false)))
, 0, wxBOTTOM, 5 ); , 0, wxBOTTOM, 5 );
mainSizer->Add( new wxButton( this, MoreInfoTranscode_Event,
wxU( _("More Info")) ), 0, wxALL, 5 );
mainSizer->Add( new wxStaticLine(this, -1 ), 1, wxTOP|wxBOTTOM, 5 ); mainSizer->Add( new wxStaticLine(this, -1 ), 0, wxTOP|wxBOTTOM, 5 );
mainSizer->Add( new wxStaticText(this, -1, mainSizer->Add( new wxStaticText(this, -1,
wxU( vlc_wraptext(HELLO_NOTICE , TEXTWIDTH , false ))), wxU( vlc_wraptext(HELLO_NOTICE , TEXTWIDTH , false ))),
...@@ -679,13 +647,39 @@ wizInputPage::wizInputPage( wxWizard *parent, wxWizardPage *prev, intf_thread_t ...@@ -679,13 +647,39 @@ wizInputPage::wizInputPage( wxWizard *parent, wxWizardPage *prev, intf_thread_t
input_radios[1]->Disable(); input_radios[1]->Disable();
} }
/* Partial Extract Box */
wxStaticBox *partial_box = new wxStaticBox( this, -1,
wxU(_("Partial Extract")) );
wxStaticBoxSizer *partial_sizer = new wxStaticBoxSizer( partial_box,
wxVERTICAL );
partial_sizer->Add( new wxCheckBox( this, PartialEnable_Event,
wxU(_("Enable") ) ), 0 , wxLEFT , 5 );
wxFlexGridSizer *partial_sizer2 = new wxFlexGridSizer( 4,1,20 );
partial_sizer2->Add( new wxStaticText(this, -1, wxU(_("From"))),0,wxLEFT ,5);
from_text = new wxTextCtrl( this, -1, wxT(""),
wxDefaultPosition, wxSize(80,25) );
partial_sizer2->Add( from_text, 0 , wxALIGN_RIGHT);
partial_sizer2->Add( new wxStaticText(this, -1, wxU(_("To"))),0,wxLEFT ,5);
to_text = new wxTextCtrl( this, -1, wxT(""),
wxDefaultPosition, wxSize(80,25) );
partial_sizer2->Add( to_text, 0 , wxALIGN_RIGHT);
partial_sizer->Add( partial_sizer2, 0, wxALL, 0 );
mainSizer->Add( partial_sizer, 0, wxALL, 5 );
from_text->Disable();
to_text->Disable();
SetSizer(mainSizer); SetSizer(mainSizer);
mainSizer->Fit(this); mainSizer->Fit(this);
mainSizer->Layout();
} }
wizInputPage::~wizInputPage() wizInputPage::~wizInputPage()
{ {
if( p_open_dialog ) delete p_open_dialog;
} }
void wizInputPage::OnInputChange(wxEvent& event) void wizInputPage::OnInputChange(wxEvent& event)
...@@ -699,6 +693,7 @@ void wizInputPage::OnInputChange(wxEvent& event) ...@@ -699,6 +693,7 @@ void wizInputPage::OnInputChange(wxEvent& event)
mainSizer->Hide( pl_panel ); mainSizer->Hide( pl_panel );
open_panel->Show(); open_panel->Show();
mainSizer->Show( open_panel ); mainSizer->Show( open_panel );
mainSizer->Layout();
} }
} }
else else
...@@ -707,9 +702,16 @@ void wizInputPage::OnInputChange(wxEvent& event) ...@@ -707,9 +702,16 @@ void wizInputPage::OnInputChange(wxEvent& event)
mainSizer->Hide( open_panel ); mainSizer->Hide( open_panel );
pl_panel->Show(); pl_panel->Show();
mainSizer->Show( pl_panel ); mainSizer->Show( pl_panel );
mainSizer->Layout();
} }
} }
void wizInputPage::OnEnablePartial(wxCommandEvent& event)
{
from_text->Enable( event.IsChecked() );
to_text->Enable( event.IsChecked() );
}
void wizInputPage::OnWizardPageChanging(wxWizardEvent& event) void wizInputPage::OnWizardPageChanging(wxWizardEvent& event)
{ {
if( i_input == 0) if( i_input == 0)
...@@ -723,6 +725,13 @@ void wizInputPage::OnWizardPageChanging(wxWizardEvent& event) ...@@ -723,6 +725,13 @@ void wizInputPage::OnWizardPageChanging(wxWizardEvent& event)
else else
{ {
p_parent->SetMrl( (const char *)mrl_text->GetValue().c_str() ); p_parent->SetMrl( (const char *)mrl_text->GetValue().c_str() );
if( from_text->IsEnabled() )
{
msg_Dbg( p_intf, "Partial streaming enabled");
int i_from = atoi( from_text->GetValue().mb_str() );
int i_to = atoi( to_text->GetValue().mb_str() );
p_parent->SetPartial( i_from, i_to );
}
} }
} }
else else
...@@ -938,10 +947,12 @@ void wizTranscodeCodecPage::OnWizardPageChanging(wxWizardEvent& event) ...@@ -938,10 +947,12 @@ void wizTranscodeCodecPage::OnWizardPageChanging(wxWizardEvent& event)
} }
} }
struct codec *c = (struct codec*) struct codec *c = (struct codec*)
(video_combo->GetClientData(video_combo->GetSelection())); (video_combo->GetClientData( video_combo->IsEnabled() ?
video_combo->GetSelection(): i_video_codec ));
vcodec = strdup(c->psz_codec); vcodec = strdup(c->psz_codec);
c = (struct codec*) c = (struct codec*)
(audio_combo->GetClientData(audio_combo->GetSelection())); (audio_combo->GetClientData( audio_combo->IsEnabled() ?
audio_combo->GetSelection() : i_audio_codec ));
acodec = strdup(c->psz_codec); acodec = strdup(c->psz_codec);
...@@ -968,7 +979,7 @@ wizStreamingMethodPage::wizStreamingMethodPage( wxWizard *parent, ...@@ -968,7 +979,7 @@ wizStreamingMethodPage::wizStreamingMethodPage( wxWizard *parent,
p_next = next; p_next = next;
p_parent = (WizardDialog *)parent; p_parent = (WizardDialog *)parent;
wxBoxSizer *mainSizer = new wxBoxSizer(wxVERTICAL); mainSizer = new wxBoxSizer(wxVERTICAL);
/* Create the texts */ /* Create the texts */
mainSizer->Add( new wxStaticText(this, -1, wxU( mainSizer->Add( new wxStaticText(this, -1, wxU(
...@@ -1038,6 +1049,7 @@ void wizStreamingMethodPage::OnMethodChange(wxEvent& event) ...@@ -1038,6 +1049,7 @@ void wizStreamingMethodPage::OnMethodChange(wxEvent& event)
i_method = event.GetId() - MethodRadio0_Event; i_method = event.GetId() - MethodRadio0_Event;
address_text->SetLabel( wxU( address_text->SetLabel( wxU(
vlc_wraptext( _(methods_array[i_method].psz_address), TEXTWIDTH, false))); vlc_wraptext( _(methods_array[i_method].psz_address), TEXTWIDTH, false)));
mainSizer->Layout();
} }
/*************************************************** /***************************************************
...@@ -1219,7 +1231,15 @@ wxWizard( _p_parent, -1, wxU(_("Streaming/Transcoding Wizard")), wxNullBitmap, w ...@@ -1219,7 +1231,15 @@ wxWizard( _p_parent, -1, wxU(_("Streaming/Transcoding Wizard")), wxNullBitmap, w
p_intf = _p_intf; p_intf = _p_intf;
SetPageSize(wxSize(400,350)); SetPageSize(wxSize(400,350));
/* Initialize structure */
i_action = 0; i_action = 0;
i_from = 0;
i_to = 0;
vb = 0;
ab = 0;
acodec=NULL;
vcodec=NULL;
page1 = new wizHelloPage(this); page1 = new wizHelloPage(this);
page2 = new wizInputPage(this, page1, p_intf); page2 = new wizInputPage(this, page1, p_intf);
encap_page = new wizEncapPage(this ); encap_page = new wizEncapPage(this );
...@@ -1249,7 +1269,7 @@ wxWizard( _p_parent, -1, wxU(_("Streaming/Transcoding Wizard")), wxNullBitmap, w ...@@ -1249,7 +1269,7 @@ wxWizard( _p_parent, -1, wxU(_("Streaming/Transcoding Wizard")), wxNullBitmap, w
WizardDialog::~WizardDialog() WizardDialog::~WizardDialog()
{ {
// Destroy(); Destroy();
msg_Dbg(p_intf,"Killing wizard"); msg_Dbg(p_intf,"Killing wizard");
delete page1; delete page1;
msg_Dbg(p_intf,"Killing wizard2"); msg_Dbg(p_intf,"Killing wizard2");
...@@ -1274,13 +1294,20 @@ void WizardDialog::SetMrl( const char *mrl ) ...@@ -1274,13 +1294,20 @@ void WizardDialog::SetMrl( const char *mrl )
this->mrl = strdup( mrl ); this->mrl = strdup( mrl );
} }
void WizardDialog::SetPartial( int from, int to )
{
msg_Dbg(p_intf, "From %i to %i", from, to );
this->i_from = i_from;
this->i_to = i_to;
}
void WizardDialog::SetTranscode( char *vcodec, int vb, char *acodec,int ab) void WizardDialog::SetTranscode( char *vcodec, int vb, char *acodec,int ab)
{ {
if( vcodec ) if( strcmp( vcodec, "dummy") )
{ {
this->vcodec = strdup(vcodec); this->vcodec= strdup(vcodec);
} }
if( acodec) if( strcmp( acodec, "dummy" ) )
{ {
this->acodec = strdup(acodec); this->acodec = strdup(acodec);
} }
...@@ -1326,7 +1353,7 @@ void WizardDialog::Run() ...@@ -1326,7 +1353,7 @@ void WizardDialog::Run()
msg_Dbg( p_intf,"Action: %i", i_action); msg_Dbg( p_intf,"Action: %i", i_action);
if( i_action == ACTION_TRANSCODE) if( i_action == ACTION_TRANSCODE)
{ {
msg_Dbg( p_intf,"Starting transcode of %s to file %s", mrl, "caca"); msg_Dbg( p_intf,"Starting transcode of %s to file %s", mrl, address);
msg_Dbg( p_intf,"Using %s (%i kbps) / %s (%i kbps)",vcodec,vb,acodec,ab); msg_Dbg( p_intf,"Using %s (%i kbps) / %s (%i kbps)",vcodec,vb,acodec,ab);
msg_Dbg( p_intf,"Encap %s",mux); msg_Dbg( p_intf,"Encap %s",mux);
int i_tr_size = 10; /* 10 = ab + vb */ int i_tr_size = 10; /* 10 = ab + vb */
...@@ -1334,10 +1361,18 @@ void WizardDialog::Run() ...@@ -1334,10 +1361,18 @@ void WizardDialog::Run()
i_tr_size += acodec ? strlen(acodec) : 0; i_tr_size += acodec ? strlen(acodec) : 0;
char *psz_transcode = (char *)malloc( i_tr_size * sizeof(char)); char *psz_transcode = (char *)malloc( i_tr_size * sizeof(char));
if( vcodec || acodec )
{
sprintf( psz_transcode, "transcode{");
}
else
{
sprintf( psz_transcode, "%c", 0 );
}
if( vcodec ) if( vcodec )
{ {
sprintf( psz_transcode, "vcodec=%s,vb=%i", sprintf( psz_transcode, "%svcodec=%s,vb=%i",
vcodec, vb ); psz_transcode, vcodec, vb );
} }
if( acodec ) if( acodec )
{ {
...@@ -1345,12 +1380,16 @@ void WizardDialog::Run() ...@@ -1345,12 +1380,16 @@ void WizardDialog::Run()
psz_transcode, vcodec ? ',' : ' ', psz_transcode, vcodec ? ',' : ' ',
acodec, ab ); acodec, ab );
} }
if( vcodec || acodec )
{
sprintf( psz_transcode, "%s}:", psz_transcode );
}
i_size = 73 + strlen(mux) + strlen(address) + strlen(psz_transcode); i_size = 73 + strlen(mux) + strlen(address) + strlen(psz_transcode);
psz_opt = (char *)malloc( i_size * sizeof(char) ); psz_opt = (char *)malloc( i_size * sizeof(char) );
sprintf( psz_opt, ":sout=#transcode{%s}:standard{mux=%s,url=%s," sprintf( psz_opt, ":sout=#%sstandard{mux=%s,url=%s,"
"access=file}", "access=file}",
psz_transcode, mux, address ); psz_transcode, mux, address );
msg_Dbg( p_intf,""); msg_Dbg( p_intf,"");
} }
else else
{ {
...@@ -1368,9 +1407,22 @@ void WizardDialog::Run() ...@@ -1368,9 +1407,22 @@ void WizardDialog::Run()
VLC_OBJECT_PLAYLIST, FIND_ANYWHERE); VLC_OBJECT_PLAYLIST, FIND_ANYWHERE);
if( p_playlist ) if( p_playlist )
{ {
playlist_AddExt( p_playlist, mrl, ITEM_NAME,PLAYLIST_APPEND | playlist_item_t *p_item = playlist_ItemNew( p_playlist, mrl, ITEM_NAME );
PLAYLIST_GO, PLAYLIST_END , -1 , playlist_ItemAddOption( p_item, psz_opt);
(const char **)&psz_opt , 1 ); if( i_from != 0)
{
char psz_from[20];
msg_Dbg( p_intf, "Setting starttime");
sprintf( psz_from, "start-time=%i", i_from);
playlist_ItemAddOption( p_item, psz_from);
}
if( i_to != 0)
{
char psz_to[20];
sprintf( psz_to, "stop-time=%i", i_to);
playlist_ItemAddOption( p_item, psz_to);
}
playlist_AddItem( p_playlist, p_item, PLAYLIST_GO, PLAYLIST_END );
vlc_object_release(p_playlist); vlc_object_release(p_playlist);
} }
else else
......
...@@ -573,6 +573,7 @@ public: ...@@ -573,6 +573,7 @@ public:
virtual ~WizardDialog(); virtual ~WizardDialog();
void SetTranscode( char *vcodec, int vb, char *acodec,int ab); void SetTranscode( char *vcodec, int vb, char *acodec,int ab);
void SetMrl( const char *mrl ); void SetMrl( const char *mrl );
void SetPartial( int, int );
void SetStream( char *method, char *address ); void SetStream( char *method, char *address );
void SetTranscodeOut( char *address ); void SetTranscodeOut( char *address );
void SetAction( int i_action ); void SetAction( int i_action );
...@@ -583,6 +584,7 @@ public: ...@@ -583,6 +584,7 @@ public:
private: private:
int vb,ab; int vb,ab;
int i_from, i_to;
char *vcodec,*acodec,*method,*address,*mrl,*mux; char *vcodec,*acodec,*method,*address,*mrl,*mux;
DECLARE_EVENT_TABLE(); DECLARE_EVENT_TABLE();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment