Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
11e571c7
Commit
11e571c7
authored
Apr 03, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hwaccel: uniformize plugin descriptions
parent
9495b3ca
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
modules/codec/avcodec/hwdummy.c
modules/codec/avcodec/hwdummy.c
+1
-1
modules/codec/avcodec/vaapi.c
modules/codec/avcodec/vaapi.c
+2
-2
modules/hw/vdpau/avcodec.c
modules/hw/vdpau/avcodec.c
+1
-1
No files found.
modules/codec/avcodec/hwdummy.c
View file @
11e571c7
...
@@ -39,7 +39,7 @@ static int Open(vlc_va_t *, AVCodecContext *, const es_format_t *);
...
@@ -39,7 +39,7 @@ static int Open(vlc_va_t *, AVCodecContext *, const es_format_t *);
static
void
Close
(
vlc_va_t
*
);
static
void
Close
(
vlc_va_t
*
);
vlc_module_begin
()
vlc_module_begin
()
set_description
(
N_
(
"Dummy video decod
ing accelerato
r"
))
set_description
(
N_
(
"Dummy video decod
e
r"
))
set_capability
(
"hw decoder"
,
0
)
set_capability
(
"hw decoder"
,
0
)
set_category
(
CAT_INPUT
)
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_VCODEC
)
set_subcategory
(
SUBCAT_INPUT_VCODEC
)
...
...
modules/codec/avcodec/vaapi.c
View file @
11e571c7
...
@@ -59,9 +59,9 @@ static void Delete( vlc_va_t * );
...
@@ -59,9 +59,9 @@ static void Delete( vlc_va_t * );
vlc_module_begin
()
vlc_module_begin
()
#if defined (VLC_VA_BACKEND_XLIB)
#if defined (VLC_VA_BACKEND_XLIB)
set_description
(
N_
(
"V
ideo Acceleration (VA) API /
X11"
)
)
set_description
(
N_
(
"V
A-API video decoder via
X11"
)
)
#elif defined (VLC_VA_BACKEND_DRM)
#elif defined (VLC_VA_BACKEND_DRM)
set_description
(
N_
(
"V
ideo Acceleration (VA) API /
DRM"
)
)
set_description
(
N_
(
"V
A-API video decoder via
DRM"
)
)
#endif
#endif
set_capability
(
"hw decoder"
,
0
)
set_capability
(
"hw decoder"
,
0
)
set_category
(
CAT_INPUT
)
set_category
(
CAT_INPUT
)
...
...
modules/hw/vdpau/avcodec.c
View file @
11e571c7
...
@@ -42,7 +42,7 @@ static int Open(vlc_va_t *, AVCodecContext *, const es_format_t *);
...
@@ -42,7 +42,7 @@ static int Open(vlc_va_t *, AVCodecContext *, const es_format_t *);
static
void
Close
(
vlc_va_t
*
);
static
void
Close
(
vlc_va_t
*
);
vlc_module_begin
()
vlc_module_begin
()
set_description
(
N_
(
"VDPAU
hardware-accelerated
decoder"
))
set_description
(
N_
(
"VDPAU
video
decoder"
))
set_capability
(
"hw decoder"
,
100
)
set_capability
(
"hw decoder"
,
100
)
set_category
(
CAT_INPUT
)
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_VCODEC
)
set_subcategory
(
SUBCAT_INPUT_VCODEC
)
...
...
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