Commit 5851d9ab authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wxwindows/streamout.cpp: updated the stream output dialog to use the new stream output syntax and features.
parent f6614cc4
This diff is collapsed.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* wxwindows.h: private wxWindows interface description * wxwindows.h: private wxWindows interface description
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN * Copyright (C) 1999, 2000 VideoLAN
* $Id: wxwindows.h,v 1.25 2003/05/13 22:59:16 gbazin Exp $ * $Id: wxwindows.h,v 1.26 2003/05/15 01:33:53 gbazin Exp $
* *
* Authors: Gildas Bazin <gbazin@netcourrier.com> * Authors: Gildas Bazin <gbazin@netcourrier.com>
* *
...@@ -301,6 +301,7 @@ private: ...@@ -301,6 +301,7 @@ private:
void UpdateMRL(); void UpdateMRL();
wxPanel *AccessPanel( wxWindow* parent ); wxPanel *AccessPanel( wxWindow* parent );
wxPanel *EncapsulationPanel( wxWindow* parent ); wxPanel *EncapsulationPanel( wxWindow* parent );
wxPanel *TranscodingPanel( wxWindow* parent );
void ParseMRL(); void ParseMRL();
/* Event handlers (these functions should _not_ be virtual) */ /* Event handlers (these functions should _not_ be virtual) */
...@@ -319,18 +320,20 @@ private: ...@@ -319,18 +320,20 @@ private:
/* Event handlers for the encapsulation panel */ /* Event handlers for the encapsulation panel */
void OnEncapsulationChange( wxCommandEvent& event ); void OnEncapsulationChange( wxCommandEvent& event );
/* Event handlers for the transcoding panel */
void OnTranscodingEnable( wxCommandEvent& event );
void OnTranscodingChange( wxCommandEvent& event );
DECLARE_EVENT_TABLE(); DECLARE_EVENT_TABLE();
intf_thread_t *p_intf; intf_thread_t *p_intf;
wxWindow *p_parent; wxWindow *p_parent;
wxComboBox *mrl_combo; wxComboBox *mrl_combo;
wxPanel *access_panel;
wxPanel *encapsulation_panel;
/* Controls for the access outputs */ /* Controls for the access outputs */
wxPanel *access_subpanels[4]; wxPanel *access_subpanels[5];
wxRadioButton *access_radios[4]; wxCheckBox *access_checkboxes[5];
int i_access_type; int i_access_type;
...@@ -339,9 +342,16 @@ private: ...@@ -339,9 +342,16 @@ private:
wxTextCtrl *net_addr; wxTextCtrl *net_addr;
/* Controls for the encapsulation */ /* Controls for the encapsulation */
wxRadioButton *encapsulation_radios[4]; wxRadioButton *encapsulation_radios[5];
int i_encapsulation_type; int i_encapsulation_type;
/* Controls for transcoding */
wxCheckBox *video_transc_checkbox;
wxComboBox *video_codec_combo;
wxComboBox *audio_codec_combo;
wxCheckBox *audio_transc_checkbox;
wxComboBox *video_bitrate_combo;
wxComboBox *audio_bitrate_combo;
}; };
/* Subtitles File Dialog */ /* Subtitles File Dialog */
......
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