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
9978ed7d
Commit
9978ed7d
authored
Apr 22, 2011
by
Young Han Lee
Committed by
Diego Biurrun
Apr 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aacdec: indentation cosmetics
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
b4a53314
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
aacdec.c
libavcodec/aacdec.c
+9
-10
No files found.
libavcodec/aacdec.c
View file @
9978ed7d
...
...
@@ -180,9 +180,8 @@ static ChannelElement *get_che(AACContext *ac, int type, int elem_id)
* @return Returns error status. 0 - OK, !0 - error
*/
static
av_cold
int
che_configure
(
AACContext
*
ac
,
enum
ChannelPosition
che_pos
[
4
][
MAX_ELEM_ID
],
int
type
,
int
id
,
int
*
channels
)
enum
ChannelPosition
che_pos
[
4
][
MAX_ELEM_ID
],
int
type
,
int
id
,
int
*
channels
)
{
if
(
che_pos
[
type
][
id
])
{
if
(
!
ac
->
che
[
type
][
id
]
&&
!
(
ac
->
che
[
type
][
id
]
=
av_mallocz
(
sizeof
(
ChannelElement
))))
...
...
@@ -212,9 +211,9 @@ static av_cold int che_configure(AACContext *ac,
* @return Returns error status. 0 - OK, !0 - error
*/
static
av_cold
int
output_configure
(
AACContext
*
ac
,
enum
ChannelPosition
che_pos
[
4
][
MAX_ELEM_ID
],
enum
ChannelPosition
new_che_pos
[
4
][
MAX_ELEM_ID
],
int
channel_config
,
enum
OCStatus
oc_type
)
enum
ChannelPosition
che_pos
[
4
][
MAX_ELEM_ID
],
enum
ChannelPosition
new_che_pos
[
4
][
MAX_ELEM_ID
],
int
channel_config
,
enum
OCStatus
oc_type
)
{
AVCodecContext
*
avctx
=
ac
->
avctx
;
int
i
,
type
,
channels
=
0
,
ret
;
...
...
@@ -231,7 +230,7 @@ static av_cold int output_configure(AACContext *ac,
return
ret
;
}
memset
(
ac
->
tag_che_map
,
0
,
4
*
MAX_ELEM_ID
*
sizeof
(
ac
->
che
[
0
][
0
]));
memset
(
ac
->
tag_che_map
,
0
,
4
*
MAX_ELEM_ID
*
sizeof
(
ac
->
che
[
0
][
0
]));
avctx
->
channel_layout
=
aac_channel_layout
[
channel_config
-
1
];
}
else
{
...
...
@@ -346,8 +345,8 @@ static int decode_pce(AVCodecContext *avctx, MPEG4AudioConfig *m4ac,
* @return Returns error status. 0 - OK, !0 - error
*/
static
av_cold
int
set_default_channel_config
(
AVCodecContext
*
avctx
,
enum
ChannelPosition
new_che_pos
[
4
][
MAX_ELEM_ID
],
int
channel_config
)
enum
ChannelPosition
new_che_pos
[
4
][
MAX_ELEM_ID
],
int
channel_config
)
{
if
(
channel_config
<
1
||
channel_config
>
7
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"invalid default channel configuration (%d)
\n
"
,
...
...
@@ -1235,7 +1234,7 @@ static av_always_inline float flt16_trunc(float pf)
static
av_always_inline
void
predict
(
PredictorState
*
ps
,
float
*
coef
,
float
sf_scale
,
float
inv_sf_scale
,
int
output_enable
)
int
output_enable
)
{
const
float
a
=
0
.
953125
;
// 61.0 / 64
const
float
alpha
=
0
.
90625
;
// 29.0 / 32
...
...
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