Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
c97c0436
Commit
c97c0436
authored
Aug 03, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
a52dec: do not change output format (refs #5150)
parent
819d135d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
11 deletions
+4
-11
modules/audio_filter/converter/a52tofloat32.c
modules/audio_filter/converter/a52tofloat32.c
+4
-11
No files found.
modules/audio_filter/converter/a52tofloat32.c
View file @
c97c0436
...
@@ -354,21 +354,14 @@ static int OpenFilter( vlc_object_t *p_this )
...
@@ -354,21 +354,14 @@ static int OpenFilter( vlc_object_t *p_this )
filter_sys_t
*
p_sys
;
filter_sys_t
*
p_sys
;
int
i_ret
;
int
i_ret
;
if
(
p_filter
->
fmt_in
.
i_codec
!=
VLC_CODEC_A52
||
if
(
p_filter
->
fmt_in
.
i_codec
!=
VLC_CODEC_A52
)
p_filter
->
fmt_out
.
audio
.
i_format
==
VLC_CODEC_SPDIFB
||
p_filter
->
fmt_out
.
audio
.
i_format
==
VLC_CODEC_SPDIFL
)
{
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
p_filter
->
fmt_out
.
audio
.
i_format
=
#ifdef LIBA52_FIXED
#ifdef LIBA52_FIXED
p_filter
->
fmt_out
.
i_codec
=
VLC_CODEC_FI32
;
if
(
p_filter
->
fmt_out
.
audio
.
i_format
!=
VLC_CODEC_FI32
)
#else
#else
p_filter
->
fmt_out
.
i_codec
=
VLC_CODEC_FL32
;
if
(
p_filter
->
fmt_out
.
audio
.
i_format
!=
VLC_CODEC_FL32
)
#endif
#endif
p_filter
->
fmt_out
.
audio
.
i_bitspersample
=
return
VLC_EGENERIC
;
aout_BitsPerSample
(
p_filter
->
fmt_out
.
i_codec
);
/* Allocate the memory needed to store the module's structure */
/* Allocate the memory needed to store the module's structure */
p_filter
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
filter_sys_t
)
);
p_filter
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
filter_sys_t
)
);
...
...
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