Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
2e7fbf46
Commit
2e7fbf46
authored
Dec 03, 2005
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete more SLP stuff
parent
f6f10f97
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
17 deletions
+3
-17
extras/MacOSX/Resources/English.lproj/Open.nib/classes.nib
extras/MacOSX/Resources/English.lproj/Open.nib/classes.nib
+0
-1
extras/MacOSX/Resources/English.lproj/Open.nib/info.nib
extras/MacOSX/Resources/English.lproj/Open.nib/info.nib
+1
-1
extras/MacOSX/Resources/English.lproj/Open.nib/keyedobjects.nib
.../MacOSX/Resources/English.lproj/Open.nib/keyedobjects.nib
+0
-0
modules/gui/macosx/output.h
modules/gui/macosx/output.h
+0
-1
modules/gui/macosx/output.m
modules/gui/macosx/output.m
+2
-14
No files found.
extras/MacOSX/Resources/English.lproj/Open.nib/classes.nib
View file @
2e7fbf46
...
...
@@ -363,7 +363,6 @@
"o_sap_chkbox" = id;
"o_sdp_url" = id;
"o_sdp_url_lbl" = id;
"o_slp_chkbox" = id;
"o_stream_address" = id;
"o_stream_address_lbl" = id;
"o_stream_port" = id;
...
...
extras/MacOSX/Resources/English.lproj/Open.nib/info.nib
View file @
2e7fbf46
...
...
@@ -14,6 +14,6 @@
<integer>
2199
</integer>
</array>
<key>
IBSystem Version
</key>
<string>
8
C
46
</string>
<string>
8
F
46
</string>
</dict>
</plist>
extras/MacOSX/Resources/English.lproj/Open.nib/keyedobjects.nib
View file @
2e7fbf46
No preview for this file type
modules/gui/macosx/output.h
View file @
2e7fbf46
...
...
@@ -70,7 +70,6 @@
IBOutlet
id
o_misc_lbl
;
IBOutlet
id
o_sap_chkbox
;
IBOutlet
id
o_slp_chkbox
;
IBOutlet
id
o_channel_name
;
IBOutlet
id
o_channel_name_lbl
;
...
...
modules/gui/macosx/output.m
View file @
2e7fbf46
...
...
@@ -179,7 +179,6 @@
[
o_misc_lbl
setTitle
:
_NS
(
"Stream Announcing"
)];
[
o_sap_chkbox
setTitle
:
_NS
(
"SAP announce"
)];
[
o_slp_chkbox
setTitle
:
_NS
(
"SLP announce"
)];
[
o_rtsp_chkbox
setTitle
:
_NS
(
"RTSP announce"
)];
[
o_http_chkbox
setTitle
:
_NS
(
"HTTP announce"
)];
[
o_file_chkbox
setTitle
:
_NS
(
"Export SDP as file"
)];
...
...
@@ -221,7 +220,6 @@
o_mode
=
[[
o_method
selectedCell
]
title
];
[
o_sap_chkbox
setEnabled
:
NO
];
[
o_slp_chkbox
setEnabled
:
NO
];
[
o_http_chkbox
setEnabled
:
NO
];
[
o_rtsp_chkbox
setEnabled
:
NO
];
[
o_file_chkbox
setEnabled
:
NO
];
...
...
@@ -306,7 +304,6 @@
[[
o_mux_selector
itemAtIndex
:
7
]
setEnabled
:
NO
];
[[
o_mux_selector
itemAtIndex
:
8
]
setEnabled
:
YES
];
[
o_sap_chkbox
setEnabled
:
YES
];
[
o_slp_chkbox
setEnabled
:
YES
];
[
o_channel_name
setEnabled
:
YES
];
}
else
if
(
[
o_mode
isEqualToString
:
@"RTP"
]
)
...
...
@@ -325,7 +322,6 @@
[[
o_mux_selector
itemAtIndex
:
8
]
setEnabled
:
YES
];
[
o_mux_selector
selectItemAtIndex
:
8
];
[
o_sap_chkbox
setEnabled
:
YES
];
[
o_slp_chkbox
setEnabled
:
NO
];
[
o_rtsp_chkbox
setEnabled
:
YES
];
[
o_http_chkbox
setEnabled
:
YES
];
[
o_file_chkbox
setEnabled
:
YES
];
...
...
@@ -414,14 +410,6 @@
else
[
o_announce
appendFormat
:
@",sap"
];
}
if
(
[
o_slp_chkbox
state
]
==
NSOnState
)
{
if
(
!
[[
o_channel_name
stringValue
]
isEqualToString
:
@""
]
)
[
o_announce
appendFormat
:
@
"slp,name=%@"
,[
o_channel_name
stringValue
]];
else
[
o_announce
appendString
:
@",slp"
];
}
}
if
(
!
[
o_mode
isEqualToString
:
@"RTP"
]
)
{
...
...
@@ -634,8 +622,8 @@
{
NSString
*
o_mode
;
o_mode
=
[[
o_stream_type
selectedCell
]
title
];
[
o_channel_name
setEnabled
:
[
o_sap_chkbox
state
]
||
[
o_slp_chkbox
state
]
||
[
o_mode
isEqualToString
:
@"RTP"
]];
[
o_channel_name
setEnabled
:
[
o_sap_chkbox
state
]
||
[
o_mode
isEqualToString
:
@"RTP"
]];
if
([
o_mode
isEqualToString
:
@"RTP"
])
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment