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
c7e24bbe
Commit
c7e24bbe
authored
Jun 17, 2014
by
Hugo Beauzée-Luyssen
Committed by
Rémi Denis-Courmont
Jun 17, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mono: Specify the expected format rather than failing
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
3e6cd947
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
modules/audio_filter/channel_mixer/mono.c
modules/audio_filter/channel_mixer/mono.c
+2
-7
No files found.
modules/audio_filter/channel_mixer/mono.c
View file @
c7e24bbe
...
@@ -347,13 +347,8 @@ static int OpenFilter( vlc_object_t *p_this )
...
@@ -347,13 +347,8 @@ static int OpenFilter( vlc_object_t *p_this )
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
if
(
(
p_filter
->
fmt_in
.
audio
.
i_format
!=
p_filter
->
fmt_out
.
audio
.
i_format
)
||
p_filter
->
fmt_in
.
audio
.
i_format
=
VLC_CODEC_S16N
;
(
p_filter
->
fmt_in
.
audio
.
i_format
!=
VLC_CODEC_S16N
)
||
p_filter
->
fmt_out
.
audio
.
i_format
=
VLC_CODEC_S16N
;
(
p_filter
->
fmt_out
.
audio
.
i_format
!=
VLC_CODEC_S16N
)
)
{
/*msg_Err( p_this, "couldn't load mono filter" );*/
return
VLC_EGENERIC
;
}
/* Allocate the memory needed to store the module's structure */
/* Allocate the memory needed to store the module's structure */
p_sys
=
p_filter
->
p_sys
=
malloc
(
sizeof
(
filter_sys_t
)
);
p_sys
=
p_filter
->
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