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
eae7338e
Commit
eae7338e
authored
Apr 06, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libx264: Make codec use the init-cleanup flag and mark it as init-thread-safe
This takes care of memory leaks on init error.
parent
74a1cad7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
libx264.c
libavcodec/libx264.c
+6
-2
No files found.
libavcodec/libx264.c
View file @
eae7338e
...
...
@@ -272,10 +272,12 @@ static av_cold int X264_close(AVCodecContext *avctx)
X264Context
*
x4
=
avctx
->
priv_data
;
av_freep
(
&
avctx
->
extradata
);
av_free
(
x4
->
sei
);
av_free
p
(
&
x4
->
sei
);
if
(
x4
->
enc
)
if
(
x4
->
enc
)
{
x264_encoder_close
(
x4
->
enc
);
x4
->
enc
=
NULL
;
}
av_frame_free
(
&
avctx
->
coded_frame
);
...
...
@@ -697,4 +699,6 @@ AVCodec ff_libx264_encoder = {
.
priv_class
=
&
class
,
.
defaults
=
x264_defaults
,
.
init_static_data
=
X264_init_static
,
.
caps_internal
=
FF_CODEC_CAP_INIT_THREADSAFE
|
FF_CODEC_CAP_INIT_CLEANUP
,
};
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