Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
1ccf82cf
Commit
1ccf82cf
authored
Dec 21, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavr: cosmetics: reindent
parent
074a00d1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
25 deletions
+28
-25
audio_convert.c
libavresample/audio_convert.c
+28
-25
No files found.
libavresample/audio_convert.c
View file @
1ccf82cf
...
@@ -393,15 +393,18 @@ int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in)
...
@@ -393,15 +393,18 @@ int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in)
}
}
case
CONV_FUNC_TYPE_INTERLEAVE
:
case
CONV_FUNC_TYPE_INTERLEAVE
:
if
(
use_generic
)
if
(
use_generic
)
ac
->
conv_interleave_generic
(
out
->
data
[
0
],
in
->
data
,
len
,
ac
->
channels
);
ac
->
conv_interleave_generic
(
out
->
data
[
0
],
in
->
data
,
len
,
ac
->
channels
);
else
else
ac
->
conv_interleave
(
out
->
data
[
0
],
in
->
data
,
len
,
ac
->
channels
);
ac
->
conv_interleave
(
out
->
data
[
0
],
in
->
data
,
len
,
ac
->
channels
);
break
;
break
;
case
CONV_FUNC_TYPE_DEINTERLEAVE
:
case
CONV_FUNC_TYPE_DEINTERLEAVE
:
if
(
use_generic
)
if
(
use_generic
)
ac
->
conv_deinterleave_generic
(
out
->
data
,
in
->
data
[
0
],
len
,
ac
->
channels
);
ac
->
conv_deinterleave_generic
(
out
->
data
,
in
->
data
[
0
],
len
,
ac
->
channels
);
else
else
ac
->
conv_deinterleave
(
out
->
data
,
in
->
data
[
0
],
len
,
ac
->
channels
);
ac
->
conv_deinterleave
(
out
->
data
,
in
->
data
[
0
],
len
,
ac
->
channels
);
break
;
break
;
}
}
}
}
...
...
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