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
f11bfe30
Commit
f11bfe30
authored
Jul 08, 2009
by
Alex Converse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reindent after last commit
Originally committed as revision 19382 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
48d20c11
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
41 deletions
+41
-41
aacenc.c
libavcodec/aacenc.c
+41
-41
No files found.
libavcodec/aacenc.c
View file @
f11bfe30
...
@@ -542,51 +542,51 @@ static int aac_encode_frame(AVCodecContext *avctx,
...
@@ -542,51 +542,51 @@ static int aac_encode_frame(AVCodecContext *avctx,
}
}
do
{
do
{
int
frame_bits
;
int
frame_bits
;
init_put_bits
(
&
s
->
pb
,
frame
,
buf_size
*
8
);
init_put_bits
(
&
s
->
pb
,
frame
,
buf_size
*
8
);
if
((
avctx
->
frame_number
&
0xFF
)
==
1
&&
!
(
avctx
->
flags
&
CODEC_FLAG_BITEXACT
))
if
((
avctx
->
frame_number
&
0xFF
)
==
1
&&
!
(
avctx
->
flags
&
CODEC_FLAG_BITEXACT
))
put_bitstream_info
(
avctx
,
s
,
LIBAVCODEC_IDENT
);
put_bitstream_info
(
avctx
,
s
,
LIBAVCODEC_IDENT
);
start_ch
=
0
;
start_ch
=
0
;
memset
(
chan_el_counter
,
0
,
sizeof
(
chan_el_counter
));
memset
(
chan_el_counter
,
0
,
sizeof
(
chan_el_counter
));
for
(
i
=
0
;
i
<
chan_map
[
0
];
i
++
)
{
for
(
i
=
0
;
i
<
chan_map
[
0
];
i
++
)
{
FFPsyWindowInfo
*
wi
=
windows
+
start_ch
;
FFPsyWindowInfo
*
wi
=
windows
+
start_ch
;
tag
=
chan_map
[
i
+
1
];
tag
=
chan_map
[
i
+
1
];
chans
=
tag
==
TYPE_CPE
?
2
:
1
;
chans
=
tag
==
TYPE_CPE
?
2
:
1
;
cpe
=
&
s
->
cpe
[
i
];
cpe
=
&
s
->
cpe
[
i
];
for
(
j
=
0
;
j
<
chans
;
j
++
)
{
for
(
j
=
0
;
j
<
chans
;
j
++
)
{
s
->
coder
->
search_for_quantizers
(
avctx
,
s
,
&
cpe
->
ch
[
j
],
s
->
lambda
);
s
->
coder
->
search_for_quantizers
(
avctx
,
s
,
&
cpe
->
ch
[
j
],
s
->
lambda
);
}
}
cpe
->
common_window
=
0
;
cpe
->
common_window
=
0
;
if
(
chans
>
1
if
(
chans
>
1
&&
wi
[
0
].
window_type
[
0
]
==
wi
[
1
].
window_type
[
0
]
&&
wi
[
0
].
window_type
[
0
]
==
wi
[
1
].
window_type
[
0
]
&&
wi
[
0
].
window_shape
==
wi
[
1
].
window_shape
)
{
&&
wi
[
0
].
window_shape
==
wi
[
1
].
window_shape
)
{
cpe
->
common_window
=
1
;
cpe
->
common_window
=
1
;
for
(
j
=
0
;
j
<
wi
[
0
].
num_windows
;
j
++
)
{
for
(
j
=
0
;
j
<
wi
[
0
].
num_windows
;
j
++
)
{
if
(
wi
[
0
].
grouping
[
j
]
!=
wi
[
1
].
grouping
[
j
])
{
if
(
wi
[
0
].
grouping
[
j
]
!=
wi
[
1
].
grouping
[
j
])
{
cpe
->
common_window
=
0
;
cpe
->
common_window
=
0
;
break
;
break
;
}
}
}
}
}
}
if
(
cpe
->
common_window
&&
s
->
coder
->
search_for_ms
)
if
(
cpe
->
common_window
&&
s
->
coder
->
search_for_ms
)
s
->
coder
->
search_for_ms
(
s
,
cpe
,
s
->
lambda
);
s
->
coder
->
search_for_ms
(
s
,
cpe
,
s
->
lambda
);
adjust_frame_information
(
s
,
cpe
,
chans
);
adjust_frame_information
(
s
,
cpe
,
chans
);
put_bits
(
&
s
->
pb
,
3
,
tag
);
put_bits
(
&
s
->
pb
,
3
,
tag
);
put_bits
(
&
s
->
pb
,
4
,
chan_el_counter
[
tag
]
++
);
put_bits
(
&
s
->
pb
,
4
,
chan_el_counter
[
tag
]
++
);
if
(
chans
==
2
)
{
if
(
chans
==
2
)
{
put_bits
(
&
s
->
pb
,
1
,
cpe
->
common_window
);
put_bits
(
&
s
->
pb
,
1
,
cpe
->
common_window
);
if
(
cpe
->
common_window
)
{
if
(
cpe
->
common_window
)
{
put_ics_info
(
s
,
&
cpe
->
ch
[
0
].
ics
);
put_ics_info
(
s
,
&
cpe
->
ch
[
0
].
ics
);
encode_ms_info
(
&
s
->
pb
,
cpe
);
encode_ms_info
(
&
s
->
pb
,
cpe
);
}
}
}
for
(
j
=
0
;
j
<
chans
;
j
++
)
{
s
->
cur_channel
=
start_ch
+
j
;
ff_psy_set_band_info
(
&
s
->
psy
,
s
->
cur_channel
,
cpe
->
ch
[
j
].
coeffs
,
&
wi
[
j
]);
encode_individual_channel
(
avctx
,
s
,
&
cpe
->
ch
[
j
],
cpe
->
common_window
);
}
start_ch
+=
chans
;
}
}
for
(
j
=
0
;
j
<
chans
;
j
++
)
{
s
->
cur_channel
=
start_ch
+
j
;
ff_psy_set_band_info
(
&
s
->
psy
,
s
->
cur_channel
,
cpe
->
ch
[
j
].
coeffs
,
&
wi
[
j
]);
encode_individual_channel
(
avctx
,
s
,
&
cpe
->
ch
[
j
],
cpe
->
common_window
);
}
start_ch
+=
chans
;
}
frame_bits
=
put_bits_count
(
&
s
->
pb
);
frame_bits
=
put_bits_count
(
&
s
->
pb
);
if
(
frame_bits
<=
6144
*
avctx
->
channels
-
3
)
if
(
frame_bits
<=
6144
*
avctx
->
channels
-
3
)
...
...
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