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
c5e03ceb
Commit
c5e03ceb
authored
Apr 12, 2011
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvo-*: Don't use deprecated sample format names and enum names
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
b5304f7b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
libvo-aacenc.c
libavcodec/libvo-aacenc.c
+1
-1
libvo-amrwbenc.c
libavcodec/libvo-amrwbenc.c
+1
-1
No files found.
libavcodec/libvo-aacenc.c
View file @
c5e03ceb
...
@@ -122,7 +122,7 @@ AVCodec ff_libvo_aacenc_encoder = {
...
@@ -122,7 +122,7 @@ AVCodec ff_libvo_aacenc_encoder = {
aac_encode_frame
,
aac_encode_frame
,
aac_encode_close
,
aac_encode_close
,
NULL
,
NULL
,
.
sample_fmts
=
(
const
enum
SampleFormat
[]){
SAMPLE_FMT_S16
,
SAMPLE_FMT_NONE
},
.
sample_fmts
=
(
const
enum
AVSampleFormat
[]){
AV_SAMPLE_FMT_S16
,
AV_
SAMPLE_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"libvo-aacenc AAC"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"libvo-aacenc AAC"
),
};
};
libavcodec/libvo-amrwbenc.c
View file @
c5e03ceb
...
@@ -120,7 +120,7 @@ AVCodec ff_libvo_amrwbenc_encoder = {
...
@@ -120,7 +120,7 @@ AVCodec ff_libvo_amrwbenc_encoder = {
amr_wb_encode_frame
,
amr_wb_encode_frame
,
amr_wb_encode_close
,
amr_wb_encode_close
,
NULL
,
NULL
,
.
sample_fmts
=
(
const
enum
SampleFormat
[]){
SAMPLE_FMT_S16
,
SAMPLE_FMT_NONE
},
.
sample_fmts
=
(
const
enum
AVSampleFormat
[]){
AV_SAMPLE_FMT_S16
,
AV_
SAMPLE_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"libvo-amrwbenc Adaptive Multi-Rate "
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"libvo-amrwbenc Adaptive Multi-Rate "
"(AMR) Wide-Band"
),
"(AMR) Wide-Band"
),
};
};
...
...
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