Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
454
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
4e702c61
Commit
4e702c61
authored
10 years ago
by
Steve Lhomme
Committed by
Jean-Baptiste Kempf
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
DXVA2: log the exact unknown GUID value
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
8516b0f8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/codec/avcodec/dxva2.c
+2
-2
2 additions, 2 deletions
modules/codec/avcodec/dxva2.c
with
2 additions
and
2 deletions
modules/codec/avcodec/dxva2.c
+
2
−
2
View file @
4e702c61
...
...
@@ -50,6 +50,7 @@
#include
"avcodec.h"
#include
"va.h"
#include
"../../video_chroma/copy.h"
#include
"../../demux/asf/libasf_guid.h"
static
int
Open
(
vlc_va_t
*
,
AVCodecContext
*
,
const
es_format_t
*
);
static
void
Close
(
vlc_va_t
*
,
AVCodecContext
*
);
...
...
@@ -799,8 +800,7 @@ static int DxFindVideoServiceConversion(vlc_va_t *va, GUID *input, D3DFORMAT *ou
if
(
mode
)
{
msg_Dbg
(
va
,
"- '%s' is supported by hardware"
,
mode
->
name
);
}
else
{
msg_Warn
(
va
,
"- Unknown GUID = %08X-%04x-%04x-XXXX"
,
(
unsigned
)
g
->
Data1
,
g
->
Data2
,
g
->
Data3
);
msg_Warn
(
va
,
"- Unknown GUID = "
GUID_FMT
,
GUID_PRINT
(
*
g
)
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment