]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/output.h
macosx: avoid possible index out of range problem in bookmarks table view
[vlc] / modules / gui / macosx / output.h
index 58f08876211a9a94b2e6ee9f7d7d8d1bd076e264..6bb43232fc2fecdbe9ee1333a873a39485c00809 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * output.h: MacOS X Output Dialog
  *****************************************************************************
- * Copyright (C) 2002-2006 the VideoLAN team
+ * Copyright (C) 2002-2007 VLC authors and VideoLAN
  * $Id$
  *
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
@@ -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
@@ -82,9 +82,8 @@
     NSArray *o_mrl;
     NSString *o_transcode;
 }
+@property (readwrite, retain) NSArray * soutMRL;
 
-- (void)setMRL:(NSArray *)o_mrl_string;
-- (NSArray *)getMRL;
 - (void)setTranscode:(NSString *)o_transcode_string;
 
 - (void)initStrings;
 - (IBAction)outputChanged:(id)sender;
 - (IBAction)outputSettings:(id)sender;
 - (IBAction)outputCloseSheet:(id)sender;
-- (void)outputMethodChanged:(NSNotification *)o_notification;
-- (void)outputInfoChanged:(NSNotification *)o_notification;
+- (IBAction)outputMethodChanged:(id)sender;
+- (IBAction)outputInfoChanged:(id)object;
 - (void)TTLChanged:(NSNotification *)o_notification;
 - (IBAction)outputFileBrowse:(id)sender;
-- (void)transcodeChanged:(NSNotification *)o_notification;
-- (void)transcodeInfoChanged:(NSNotification *)o_notification;
+- (IBAction)streamPortStepperChanged:(id)sender;
+- (IBAction)streamTTLStepperChanged:(id)sender;
+- (IBAction)transcodeChanged:(id)sender;
+- (IBAction)transcodeInfoChanged:(id)object;
 - (IBAction)announceChanged:(id)sender;
+
+- (IBAction)streamTTLStepperChanged:(id)sender;
 @end