Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
496d55d0
Commit
496d55d0
authored
Jun 13, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fixed remaining 64bit issues
backport of
f7692e67
parent
5f908307
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
57 additions
and
23 deletions
+57
-23
NEWS
NEWS
+1
-0
modules/access/qtcapture.m
modules/access/qtcapture.m
+3
-3
modules/gui/macosx/prefs.m
modules/gui/macosx/prefs.m
+2
-2
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+42
-18
modules/misc/quartztext.c
modules/misc/quartztext.c
+9
-0
No files found.
NEWS
View file @
496d55d0
...
...
@@ -102,6 +102,7 @@ Windows CE Port:
EXPERIMENTAL work for the winCE port has been done.
Mac OS X Port:
* EXPERIMENTAL 64bit support
* Speed improvements by using llvm-gcc
* New Document icons by Dominic Spitaler
* Support for latest iSight models
...
...
modules/access/qtcapture.m
View file @
496d55d0
...
...
@@ -234,7 +234,7 @@ static int Open( vlc_object_t *p_this )
if
(
!
[
p_sys
->
device
open
:
&
o_returnedError
]
)
{
msg_Err
(
p_demux
,
"Unable to open the capture device (%
i
)"
,
[
o_returnedError
code
]
);
msg_Err
(
p_demux
,
"Unable to open the capture device (%
ld
)"
,
[
o_returnedError
code
]
);
goto
error
;
}
...
...
@@ -304,14 +304,14 @@ static int Open( vlc_object_t *p_this )
bool
ret
=
[
p_sys
->
session
addInput
:
input
error
:
&
o_returnedError
];
if
(
!
ret
)
{
msg_Err
(
p_demux
,
"default video capture device could not be added to capture session (%
i
)"
,
[
o_returnedError
code
]
);
msg_Err
(
p_demux
,
"default video capture device could not be added to capture session (%
ld
)"
,
[
o_returnedError
code
]
);
goto
error
;
}
ret
=
[
p_sys
->
session
addOutput
:
p_sys
->
output
error
:
&
o_returnedError
];
if
(
!
ret
)
{
msg_Err
(
p_demux
,
"output could not be added to capture session (%
i
)"
,
[
o_returnedError
code
]
);
msg_Err
(
p_demux
,
"output could not be added to capture session (%
ld
)"
,
[
o_returnedError
code
]
);
goto
error
;
}
...
...
modules/gui/macosx/prefs.m
View file @
496d55d0
...
...
@@ -71,7 +71,7 @@
-
(
id
)
initWithName
:(
NSString
*
)
name
;
-
(
int
)
numberOfChildren
;
-
(
VLCTreeItem
*
)
childAtIndex
:(
int
)
i_index
;
-
(
VLCTreeItem
*
)
childAtIndex
:(
NSInteger
)
i_index
;
-
(
NSString
*
)
name
;
-
(
NSMutableArray
*
)
children
;
...
...
@@ -553,7 +553,7 @@ static VLCPrefs *_o_sharedMainInstance = nil;
[
super
dealloc
];
}
-
(
VLCTreeItem
*
)
childAtIndex
:(
int
)
i_index
-
(
VLCTreeItem
*
)
childAtIndex
:(
NSInteger
)
i_index
{
return
[[
self
children
]
objectAtIndex
:
i_index
];
}
...
...
modules/gui/macosx/simple_prefs.m
View file @
496d55d0
...
...
@@ -566,10 +566,24 @@ create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_des
[
self
setupButton
:
o_osd_encoding_pop
forStringList
:
"subsdec-encoding"
];
[
self
setupField
:
o_osd_lang_fld
forOption
:
"sub-language"
];
[
self
setupField
:
o_osd_font_fld
forOption
:
"quartztext-font"
];
if
(
module_exists
(
"quartztext"
)
)
{
[
self
setupField
:
o_osd_font_fld
forOption
:
"quartztext-font"
];
[
self
setupButton
:
o_osd_font_color_pop
forIntList
:
"quartztext-color"
];
[
self
setupButton
:
o_osd_font_size_pop
forIntList
:
"quartztext-rel-fontsize"
];
}
else
{
[
o_osd_font_fld
setEnabled
:
NO
];
[
o_osd_font_color_pop
setEnabled
:
NO
];
[
o_osd_font_size_pop
setEnabled
:
NO
];
[
o_osd_font_color_pop
removeAllItems
];
[
o_osd_font_size_pop
removeAllItems
];
[
o_osd_font_btn
setEnabled
:
NO
];
}
[
self
setupButton
:
o_osd_font_color_pop
forIntList
:
"quartztext-color"
];
[
self
setupButton
:
o_osd_font_size_pop
forIntList
:
"quartztext-rel-fontsize"
];
/********************
* hotkeys settings *
...
...
@@ -921,10 +935,13 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
config_PutPsz
(
p_intf
,
"subsdec-encoding"
,
[[[
o_osd_encoding_pop
selectedItem
]
title
]
UTF8String
]
);
config_PutPsz
(
p_intf
,
"sub-language"
,
[[
o_osd_lang_fld
stringValue
]
UTF8String
]
);
config_PutPsz
(
p_intf
,
"quartztext-font"
,
[[
o_osd_font_fld
stringValue
]
UTF8String
]
);
SaveIntList
(
o_osd_font_color_pop
,
"quartztext-color"
);
SaveIntList
(
o_osd_font_size_pop
,
"quartztext-rel-fontsize"
);
if
(
module_exists
(
"quartztext"
)
)
{
config_PutPsz
(
p_intf
,
"quartztext-font"
,
[[
o_osd_font_fld
stringValue
]
UTF8String
]
);
SaveIntList
(
o_osd_font_color_pop
,
"quartztext-color"
);
SaveIntList
(
o_osd_font_size_pop
,
"quartztext-rel-fontsize"
);
}
i
=
config_SaveConfigFile
(
p_intf
,
NULL
);
...
...
@@ -1098,17 +1115,24 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
-
(
IBAction
)
showFontPicker
:(
id
)
sender
{
char
*
font
=
config_GetPsz
(
p_intf
,
"quartztext-font"
);
NSString
*
fontFamilyName
=
font
?
[
NSString
stringWithUTF8String
:
font
]
:
nil
;
free
(
font
);
if
(
fontFamilyName
)
{
NSFontDescriptor
*
fd
=
[
NSFontDescriptor
fontDescriptorWithFontAttributes
:
nil
];
NSFont
*
font
=
[
NSFont
fontWithDescriptor
:[
fd
fontDescriptorWithFamily
:
fontFamilyName
]
textTransform
:
nil
];
[[
NSFontManager
sharedFontManager
]
setSelectedFont
:
font
isMultiple
:
NO
];
}
[[
NSFontManager
sharedFontManager
]
setTarget
:
self
];
[[
NSFontPanel
sharedFontPanel
]
orderFront
:
self
];
if
(
module_exists
(
"quartztext"
)
)
{
char
*
font
=
config_GetPsz
(
p_intf
,
"quartztext-font"
);
NSString
*
fontFamilyName
=
font
?
[
NSString
stringWithUTF8String
:
font
]
:
nil
;
free
(
font
);
if
(
fontFamilyName
)
{
NSFontDescriptor
*
fd
=
[
NSFontDescriptor
fontDescriptorWithFontAttributes
:
nil
];
NSFont
*
font
=
[
NSFont
fontWithDescriptor
:[
fd
fontDescriptorWithFamily
:
fontFamilyName
]
textTransform
:
nil
];
[[
NSFontManager
sharedFontManager
]
setSelectedFont
:
font
isMultiple
:
NO
];
}
[[
NSFontManager
sharedFontManager
]
setTarget
:
self
];
[[
NSFontPanel
sharedFontPanel
]
orderFront
:
self
];
}
else
{
[
sender
setEnabled
:
NO
];
}
}
-
(
void
)
changeFont
:(
id
)
sender
...
...
modules/misc/quartztext.c
View file @
496d55d0
...
...
@@ -21,6 +21,13 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef __x86_64__
#warning "No text renderer build! Quartztext isn't 64bit compatible!"
#warning "RE-WRITE ME!"
#else
//////////////////////////////////////////////////////////////////////////////
// Preamble
//////////////////////////////////////////////////////////////////////////////
...
...
@@ -887,3 +894,5 @@ static int RenderYUVA( filter_t *p_filter, subpicture_region_t *p_region, UniCha
return
VLC_SUCCESS
;
}
#endif
\ No newline at end of file
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