]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/output.h
Removes trailing spaces. Removes tabs.
[vlc] / modules / gui / macosx / output.h
index 61d8856c18b8940faebe9a4696a073e2ebe398ec..1ff0bda9588b71d9c6af7b3b8367033ee5b93cc9 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * output.h: MacOS X Output Dialog
  *****************************************************************************
- * Copyright (C) 2002-2003 VideoLAN
- * $Id: output.h,v 1.2 2003/07/20 19:48:30 hartman Exp $
+ * Copyright (C) 2002-2006 the VideoLAN team
+ * $Id$
  *
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  *          Christophe Massiot <massiot@via.ecp.fr>
@@ -12,7 +12,7 @@
  * 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
@@ -20,7 +20,7 @@
  *
  * 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
     IBOutlet id o_output_settings;
     IBOutlet id o_output_sheet;
     IBOutlet id o_btn_ok;
-        
+
     IBOutlet id o_options_lbl;
     IBOutlet id o_display;
     IBOutlet id o_method;
     IBOutlet id o_file_field;
+    IBOutlet id o_dump_chkbox;
     IBOutlet id o_btn_browse;
     IBOutlet id o_stream_address;
     IBOutlet id o_stream_address_lbl;
     IBOutlet id o_stream_ttl_lbl;
     IBOutlet id o_stream_type;
     IBOutlet id o_stream_type_lbl;
-    
+
     IBOutlet id o_mux_lbl;
     IBOutlet id o_mux_selector;
-    
+
     IBOutlet id o_transcode_audio_bitrate;
     IBOutlet id o_transcode_audio_bitrate_lbl;
     IBOutlet id o_transcode_audio_channels;
     IBOutlet id o_transcode_lbl;
     IBOutlet id o_transcode_video_bitrate;
     IBOutlet id o_transcode_video_bitrate_lbl;
+    IBOutlet id o_transcode_video_scale;
+    IBOutlet id o_transcode_video_scale_lbl;
     IBOutlet id o_transcode_video_chkbox;
     IBOutlet id o_transcode_video_selector;
-    
+
     IBOutlet id o_misc_lbl;
     IBOutlet id o_sap_chkbox;
-    IBOutlet id o_sap_name;
-    
-    NSString *o_mrl;
+    IBOutlet id o_channel_name;
+    IBOutlet id o_channel_name_lbl;
+
+    IBOutlet id o_sdp_url;
+    IBOutlet id o_sdp_url_lbl;
+    IBOutlet id o_rtsp_chkbox;
+    IBOutlet id o_http_chkbox;
+    IBOutlet id o_file_chkbox;
+
+    NSArray *o_mrl;
     NSString *o_transcode;
 }
 
-- (void)setMRL:(NSString *)o_mrl_string;
+- (void)setMRL:(NSArray *)o_mrl_string;
+- (NSArray *)getMRL;
 - (void)setTranscode:(NSString *)o_transcode_string;
 
 - (void)initStrings;
@@ -87,5 +98,5 @@
 - (IBAction)outputFileBrowse:(id)sender;
 - (void)transcodeChanged:(NSNotification *)o_notification;
 - (void)transcodeInfoChanged:(NSNotification *)o_notification;
-- (IBAction)sapChanged:(id)sender;
+- (IBAction)announceChanged:(id)sender;
 @end