Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
17e88bf0
Commit
17e88bf0
authored
Jun 01, 2020
by
Limin Wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/aacenc: add FF_CODEC_CAP_INIT_CLEANUP
Signed-off-by:
Limin Wang
<
lance.lmwang@gmail.com
>
parent
ee726e77
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
aacenc.c
libavcodec/aacenc.c
+1
-2
iirfilter.c
libavcodec/iirfilter.c
+0
-1
No files found.
libavcodec/aacenc.c
View file @
17e88bf0
...
...
@@ -1115,7 +1115,6 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
return
0
;
fail:
aac_encode_end
(
avctx
);
return
ret
;
}
...
...
@@ -1159,7 +1158,7 @@ AVCodec ff_aac_encoder = {
.
close
=
aac_encode_end
,
.
defaults
=
aac_encode_defaults
,
.
supported_samplerates
=
mpeg4audio_sample_rates
,
.
caps_internal
=
FF_CODEC_CAP_INIT_THREADSAFE
,
.
caps_internal
=
FF_CODEC_CAP_INIT_THREADSAFE
|
FF_CODEC_CAP_INIT_CLEANUP
,
.
capabilities
=
AV_CODEC_CAP_SMALL_LAST_FRAME
|
AV_CODEC_CAP_DELAY
,
.
sample_fmts
=
(
const
enum
AVSampleFormat
[]){
AV_SAMPLE_FMT_FLTP
,
AV_SAMPLE_FMT_NONE
},
...
...
libavcodec/iirfilter.c
View file @
17e88bf0
...
...
@@ -197,7 +197,6 @@ av_cold struct FFIIRFilterCoeffs *ff_iir_filter_init_coeffs(void *avc,
return
c
;
init_fail:
ff_iir_filter_free_coeffsp
(
&
c
);
return
NULL
;
}
...
...
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