Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
b90632d5
Commit
b90632d5
authored
Jan 16, 2013
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavr: always reset mix function names and pointers in mix_function_init()
CC: libav-stable@libav.org
parent
f07ef2d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
audio_mix.c
libavresample/audio_mix.c
+4
-3
No files found.
libavresample/audio_mix.c
View file @
b90632d5
...
...
@@ -284,11 +284,12 @@ static void mix_2_to_6_fltp_flt_c(float **samples, float **matrix, int len,
static
int
mix_function_init
(
AudioMix
*
am
)
{
am
->
func_descr
=
am
->
func_descr_generic
=
"n/a"
;
am
->
mix
=
am
->
mix_generic
=
NULL
;
/* no need to set a mix function when we're skipping mixing */
if
(
!
am
->
in_matrix_channels
||
!
am
->
out_matrix_channels
)
{
am
->
func_descr
=
"n/a"
;
if
(
!
am
->
in_matrix_channels
||
!
am
->
out_matrix_channels
)
return
0
;
}
/* any-to-any C versions */
...
...
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