Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
15
Merge Requests
15
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
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
Steve Lhomme
VLC
Commits
a1526880
Commit
a1526880
authored
May 16, 2016
by
Steve Lhomme
Committed by
Jean-Baptiste Kempf
May 16, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d11va: fix deadlock on error
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
b9614965
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
modules/codec/avcodec/d3d11va.c
modules/codec/avcodec/d3d11va.c
+6
-2
No files found.
modules/codec/avcodec/d3d11va.c
View file @
a1526880
...
...
@@ -274,7 +274,8 @@ static int Extract(vlc_va_t *va, picture_t *output, uint8_t *data)
if
(
FAILED
(
hr
))
{
msg_Err
(
va
,
"Failed to create the processor output. (hr=0x%lX)"
,
hr
);
return
VLC_EGENERIC
;
ret
=
VLC_EGENERIC
;
goto
done
;
}
}
...
...
@@ -289,7 +290,8 @@ static int Extract(vlc_va_t *va, picture_t *output, uint8_t *data)
if
(
FAILED
(
hr
))
{
msg_Err
(
va
,
"Failed to process the video. (hr=0x%lX)"
,
hr
);
return
VLC_EGENERIC
;
ret
=
VLC_EGENERIC
;
goto
done
;
}
}
else
...
...
@@ -315,6 +317,8 @@ static int Extract(vlc_va_t *va, picture_t *output, uint8_t *data)
ret
=
VLC_EGENERIC
;
}
done:
#if VLC_WINSTORE_APP && LIBAVCODEC_VERSION_CHECK(57, 2, 0, 3, 100)
if
(
sys
->
context_mutex
>
0
)
{
ReleaseMutex
(
sys
->
context_mutex
);
...
...
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