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
9af5ad61
Commit
9af5ad61
authored
Jun 14, 2008
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a couple of more useful error messages
parent
3646783c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
8 deletions
+15
-8
modules/access/qtcapture.m
modules/access/qtcapture.m
+15
-8
No files found.
modules/access/qtcapture.m
View file @
9af5ad61
...
...
@@ -211,6 +211,7 @@ static int Open( vlc_object_t *p_this )
msg_Dbg
(
p_demux
,
"QTCapture Probed"
);
QTCaptureDeviceInput
*
input
=
nil
;
NSError
*
o_returnedError
;
p_sys
->
device
=
[
QTCaptureDevice
defaultInputDeviceWithMediaType
:
QTMediaTypeVideo
];
if
(
!
p_sys
->
device
)
...
...
@@ -223,16 +224,22 @@ static int Open( vlc_object_t *p_this )
goto
error
;
}
if
(
!
[
p_sys
->
device
open
:
nil
/* FIXME */
]
)
if
(
!
[
p_sys
->
device
open
:
&
o_returnedError
]
)
{
msg_Err
(
p_demux
,
"Can't open any Video device"
);
msg_Err
(
p_demux
,
"Unable to open the capture device (%i)"
,
[
o_returnedError
code
]
);
goto
error
;
}
if
(
[
p_sys
->
device
isInUseByAnotherApplication
]
==
YES
)
{
msg_Err
(
p_demux
,
"default capture device is exclusively in use by another application"
);
goto
error
;
}
input
=
[[
QTCaptureDeviceInput
alloc
]
initWithDevice
:
p_sys
->
device
];
if
(
!
p_sys
->
device
)
if
(
!
input
)
{
msg_Err
(
p_demux
,
"
Can't create a capture session
"
);
msg_Err
(
p_demux
,
"
can't create a valid capture input facility
"
);
goto
error
;
}
...
...
@@ -245,17 +252,17 @@ static int Open( vlc_object_t *p_this )
p_sys
->
session
=
[[
QTCaptureSession
alloc
]
init
];
bool
ret
=
[
p_sys
->
session
addInput
:
input
error
:
nil
/* FIXME */
];
bool
ret
=
[
p_sys
->
session
addInput
:
input
error
:
&
o_returnedError
];
if
(
!
ret
)
{
msg_Err
(
p_demux
,
"
Can't add the video device as input"
);
msg_Err
(
p_demux
,
"
default video capture device could not be added to capture session (%i)"
,
[
o_returnedError
code
]
);
goto
error
;
}
ret
=
[
p_sys
->
session
addOutput
:
p_sys
->
output
error
:
nil
/* FIXME */
];
ret
=
[
p_sys
->
session
addOutput
:
p_sys
->
output
error
:
&
o_returnedError
];
if
(
!
ret
)
{
msg_Err
(
p_demux
,
"
Can't get any output output"
);
msg_Err
(
p_demux
,
"
output could not be added to capture session (%i)"
,
[
o_returnedError
code
]
);
goto
error
;
}
...
...
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