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
914d6544
Commit
914d6544
authored
Sep 19, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup NEON audio converter module description
parent
230af767
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
modules/audio_filter/converter/neon.c
modules/audio_filter/converter/neon.c
+3
-5
No files found.
modules/audio_filter/converter/neon.c
View file @
914d6544
...
...
@@ -30,9 +30,9 @@ static int Open (vlc_object_t *);
vlc_module_begin
()
set_description
(
N_
(
"ARM NEON audio format conversions"
)
)
add_submodule
(
)
set_capability
(
"audio filter"
,
20
)
set_callbacks
(
Open
,
NULL
)
set_capability
(
"audio filter"
,
20
)
set_callbacks
(
Open
,
NULL
)
add_requirement
(
NEON
)
vlc_module_end
()
static
void
Do_F32_S32
(
aout_instance_t
*
,
aout_filter_t
*
,
...
...
@@ -44,8 +44,6 @@ static int Open (vlc_object_t *obj)
{
aout_filter_t
*
filter
=
(
aout_filter_t
*
)
obj
;
if
(
!
(
vlc_CPU
()
&
CPU_CAPABILITY_NEON
))
return
VLC_EGENERIC
;
if
(
!
AOUT_FMTS_SIMILAR
(
&
filter
->
input
,
&
filter
->
output
))
return
VLC_EGENERIC
;
...
...
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