00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 @interface VLCOutput : NSObject
00030 {
00031 IBOutlet id o_open_panel;
00032 IBOutlet id o_output_ckbox;
00033 IBOutlet id o_output_settings;
00034 IBOutlet id o_output_sheet;
00035 IBOutlet id o_btn_ok;
00036
00037 IBOutlet id o_options_lbl;
00038 IBOutlet id o_display;
00039 IBOutlet id o_method;
00040 IBOutlet id o_file_field;
00041 IBOutlet id o_dump_chkbox;
00042 IBOutlet id o_btn_browse;
00043 IBOutlet id o_stream_address;
00044 IBOutlet id o_stream_address_lbl;
00045 IBOutlet id o_stream_port;
00046 IBOutlet id o_stream_port_stp;
00047 IBOutlet id o_stream_port_lbl;
00048 IBOutlet id o_stream_ttl;
00049 IBOutlet id o_stream_ttl_stp;
00050 IBOutlet id o_stream_ttl_lbl;
00051 IBOutlet id o_stream_type;
00052 IBOutlet id o_stream_type_lbl;
00053
00054 IBOutlet id o_mux_lbl;
00055 IBOutlet id o_mux_selector;
00056
00057 IBOutlet id o_transcode_audio_bitrate;
00058 IBOutlet id o_transcode_audio_bitrate_lbl;
00059 IBOutlet id o_transcode_audio_channels;
00060 IBOutlet id o_transcode_audio_channels_lbl;
00061 IBOutlet id o_transcode_audio_chkbox;
00062 IBOutlet id o_transcode_audio_selector;
00063 IBOutlet id o_transcode_lbl;
00064 IBOutlet id o_transcode_video_bitrate;
00065 IBOutlet id o_transcode_video_bitrate_lbl;
00066 IBOutlet id o_transcode_video_scale;
00067 IBOutlet id o_transcode_video_scale_lbl;
00068 IBOutlet id o_transcode_video_chkbox;
00069 IBOutlet id o_transcode_video_selector;
00070
00071 IBOutlet id o_misc_lbl;
00072 IBOutlet id o_sap_chkbox;
00073 IBOutlet id o_slp_chkbox;
00074 IBOutlet id o_channel_name;
00075 IBOutlet id o_channel_name_lbl;
00076
00077 IBOutlet id o_sdp_url;
00078 IBOutlet id o_sdp_url_lbl;
00079 IBOutlet id o_rtsp_chkbox;
00080 IBOutlet id o_http_chkbox;
00081 IBOutlet id o_file_chkbox;
00082
00083 NSArray *o_mrl;
00084 NSString *o_transcode;
00085 }
00086
00087 - (void)setMRL:(NSArray *)o_mrl_string;
00088 - (NSArray *)getMRL;
00089 - (void)setTranscode:(NSString *)o_transcode_string;
00090
00091 - (void)initStrings;
00092
00093 - (IBAction)outputChanged:(id)sender;
00094 - (IBAction)outputSettings:(id)sender;
00095 - (IBAction)outputCloseSheet:(id)sender;
00096 - (void)outputMethodChanged:(NSNotification *)o_notification;
00097 - (void)outputInfoChanged:(NSNotification *)o_notification;
00098 - (void)TTLChanged:(NSNotification *)o_notification;
00099 - (IBAction)outputFileBrowse:(id)sender;
00100 - (void)transcodeChanged:(NSNotification *)o_notification;
00101 - (void)transcodeInfoChanged:(NSNotification *)o_notification;
00102 - (IBAction)announceChanged:(id)sender;
00103 @end