Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
0ccf1405
Commit
0ccf1405
authored
Jul 29, 2013
by
Felix Paul Kühne
Committed by
Felix Paul Kühne
Jul 29, 2013
Browse files
qtcapture: fix compilation on 10.6
parent
f8d6e492
Changes
1
Show whitespace changes
Inline
Side-by-side
modules/access/qtcapture.m
View file @
0ccf1405
...
...
@@ -344,9 +344,9 @@ static int Open(vlc_object_t *p_this)
msg_Dbg
(
p_demux
,
"PAR size %i %i"
,
(
int
)
par_size
.
width
,
(
int
)
par_size
.
height
);
[
p_sys
->
output
setPixelBufferAttributes
:
[
NSDictionary
dictionaryWithObjectsAndKeys
:
@
(
kCVPixelFormatType_422YpCbCr8
)
,
(
id
)
kCVPixelBufferPixelFormatTypeKey
,
@
(
p_sys
->
height
)
,
kCVPixelBufferHeightKey
,
@
(
p_sys
->
width
)
,
kCVPixelBufferWidthKey
,
[
NSNumber
numberWithInt
:
kCVPixelFormatType_422YpCbCr8
]
,
(
id
)
kCVPixelBufferPixelFormatTypeKey
,
[
NSNumber
numberWithInt
:
p_sys
->
height
]
,
kCVPixelBufferHeightKey
,
[
NSNumber
numberWithInt
:
p_sys
->
width
]
,
kCVPixelBufferWidthKey
,
[
NSNumber
numberWithBool
:
YES
],
(
id
)
kCVPixelBufferOpenGLCompatibilityKey
,
nil
]];
[
p_sys
->
output
setAutomaticallyDropsLateVideoFrames
:
YES
];
...
...
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