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
29679f4a
Commit
29679f4a
authored
Mar 26, 2012
by
Clément Bœsch
Committed by
Clément Bœsch
Mar 26, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aac: reference supported sample rates in encoders.
parent
21d650cb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
aacenc.c
libavcodec/aacenc.c
+1
-0
libvo-aacenc.c
libavcodec/libvo-aacenc.c
+1
-0
No files found.
libavcodec/aacenc.c
View file @
29679f4a
...
...
@@ -816,6 +816,7 @@ AVCodec ff_aac_encoder = {
.
init
=
aac_encode_init
,
.
encode2
=
aac_encode_frame
,
.
close
=
aac_encode_end
,
.
supported_samplerates
=
avpriv_mpeg4audio_sample_rates
,
.
capabilities
=
CODEC_CAP_SMALL_LAST_FRAME
|
CODEC_CAP_DELAY
|
CODEC_CAP_EXPERIMENTAL
,
.
sample_fmts
=
(
const
enum
AVSampleFormat
[]){
AV_SAMPLE_FMT_FLT
,
AV_SAMPLE_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Advanced Audio Coding"
),
...
...
libavcodec/libvo-aacenc.c
View file @
29679f4a
...
...
@@ -193,6 +193,7 @@ AVCodec ff_libvo_aacenc_encoder = {
.
init
=
aac_encode_init
,
.
encode2
=
aac_encode_frame
,
.
close
=
aac_encode_close
,
.
supported_samplerates
=
avpriv_mpeg4audio_sample_rates
,
.
capabilities
=
CODEC_CAP_SMALL_LAST_FRAME
|
CODEC_CAP_DELAY
,
.
sample_fmts
=
(
const
enum
AVSampleFormat
[]){
AV_SAMPLE_FMT_S16
,
AV_SAMPLE_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Android VisualOn AAC"
),
...
...
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