Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
9184d3f6
Commit
9184d3f6
authored
Dec 10, 2009
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qtcapture: Make sure we build on 10.6 64bits.
parent
3f7cfc2b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/access/qtcapture.m
modules/access/qtcapture.m
+6
-6
No files found.
modules/access/qtcapture.m
View file @
9184d3f6
...
...
@@ -170,9 +170,9 @@ static int qtchroma_to_fourcc( int i_qt )
}
qtchroma_to_fourcc
[]
=
{
/* Raw data types */
{
k422YpCbCr8CodecType
,
VLC_CODEC_UYVY
},
{
kComponentVideoCodecType
,
VLC_CODEC_YUYV
},
{
kComponentVideoUnsigned
,
VLC_CODEC_YUYV
},
{
'
2
vuy
'
,
VLC_CODEC_UYVY
},
{
'
yuv2
'
,
VLC_CODEC_YUYV
},
{
'
yuvs
'
,
VLC_CODEC_YUYV
},
{
0
,
0
}
};
int
i
;
...
...
@@ -255,12 +255,12 @@ static int Open( vlc_object_t *p_this )
/* Get the formats */
NSArray
*
format_array
=
[
p_sys
->
device
formatDescriptions
];
QTFormatDescription
*
camera_format
=
NULL
;
for
(
int
k
=
0
;
k
<
[
format_array
count
];
k
++
)
for
(
int
k
=
0
;
k
<
[
format_array
count
];
k
++
)
{
camera_format
=
[
format_array
objectAtIndex
:
k
];
NSLog
(
[
camera_format
localizedFormatSummary
]
);
NSLog
(
[[
camera_format
formatDescriptionAttributes
]
description
]
);
NSLog
(
@"%@"
,
[
camera_format
localizedFormatSummary
]
);
NSLog
(
@"%@"
,
[[
camera_format
formatDescriptionAttributes
]
description
]
);
}
if
(
[
format_array
count
]
)
camera_format
=
[
format_array
objectAtIndex
:
0
];
...
...
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