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
39f66edb
Commit
39f66edb
authored
May 06, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AVFilter: use picture pool to avoid malloc().
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
fa3eddc0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
71 additions
and
2 deletions
+71
-2
avfilter.c
libavfilter/avfilter.c
+42
-1
avfilter.h
libavfilter/avfilter.h
+2
-0
defaults.c
libavfilter/defaults.c
+21
-1
internal.h
libavfilter/internal.h
+6
-0
No files found.
libavfilter/avfilter.c
View file @
39f66edb
...
...
@@ -25,6 +25,7 @@
#include "libavutil/rational.h"
#include "libavutil/audioconvert.h"
#include "libavutil/imgutils.h"
#include "libavutil/avassert.h"
#include "avfilter.h"
#include "internal.h"
...
...
@@ -69,12 +70,50 @@ AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask)
return
ret
;
}
static
void
store_in_pool
(
AVFilterBufferRef
*
ref
)
{
int
i
;
AVFilterLink
*
link
=
ref
->
buf
->
priv
;
AVFilterPool
*
pool
;
av_assert0
(
ref
->
buf
->
data
[
0
]);
if
(
!
link
->
pool
)
link
->
pool
=
av_mallocz
(
sizeof
(
AVFilterPool
));
pool
=
link
->
pool
;
if
(
pool
->
count
==
POOL_SIZE
){
AVFilterBufferRef
*
ref1
=
pool
->
pic
[
0
];
av_freep
(
&
ref1
->
video
);
av_freep
(
&
ref1
->
audio
);
av_freep
(
&
ref1
->
buf
->
data
[
0
]);
av_freep
(
&
ref1
->
buf
);
av_free
(
ref1
);
memmove
(
&
pool
->
pic
[
0
],
&
pool
->
pic
[
1
],
sizeof
(
void
*
)
*
(
POOL_SIZE
-
1
));
pool
->
count
--
;
pool
->
pic
[
POOL_SIZE
-
1
]
=
NULL
;
}
for
(
i
=
0
;
i
<
POOL_SIZE
;
i
++
){
if
(
!
pool
->
pic
[
i
]){
pool
->
pic
[
i
]
=
ref
;
pool
->
count
++
;
break
;
}
}
}
void
avfilter_unref_buffer
(
AVFilterBufferRef
*
ref
)
{
if
(
!
ref
)
return
;
if
(
!
(
--
ref
->
buf
->
refcount
))
if
(
!
(
--
ref
->
buf
->
refcount
)){
if
(
!
ref
->
buf
->
free
){
store_in_pool
(
ref
);
return
;
}
ref
->
buf
->
free
(
ref
->
buf
);
}
av_freep
(
&
ref
->
video
);
av_freep
(
&
ref
->
audio
);
av_free
(
ref
);
...
...
@@ -646,6 +685,7 @@ void avfilter_free(AVFilterContext *filter)
if
((
link
=
filter
->
inputs
[
i
]))
{
if
(
link
->
src
)
link
->
src
->
outputs
[
link
->
srcpad
-
link
->
src
->
output_pads
]
=
NULL
;
av_freep
(
&
link
->
pool
);
avfilter_formats_unref
(
&
link
->
in_formats
);
avfilter_formats_unref
(
&
link
->
out_formats
);
}
...
...
@@ -655,6 +695,7 @@ void avfilter_free(AVFilterContext *filter)
if
((
link
=
filter
->
outputs
[
i
]))
{
if
(
link
->
dst
)
link
->
dst
->
inputs
[
link
->
dstpad
-
link
->
dst
->
input_pads
]
=
NULL
;
av_freep
(
&
link
->
pool
);
avfilter_formats_unref
(
&
link
->
in_formats
);
avfilter_formats_unref
(
&
link
->
out_formats
);
}
...
...
libavfilter/avfilter.h
View file @
39f66edb
...
...
@@ -619,6 +619,8 @@ struct AVFilterLink {
* input link is assumed to be an unchangeable property.
*/
AVRational
time_base
;
struct
AVFilterPool
*
pool
;
};
/**
...
...
libavfilter/defaults.c
View file @
39f66edb
...
...
@@ -25,7 +25,6 @@
#include "avfilter.h"
#include "internal.h"
/* TODO: buffer pool. see comment for avfilter_default_get_video_buffer() */
void
ff_avfilter_default_free_buffer
(
AVFilterBuffer
*
ptr
)
{
av_free
(
ptr
->
data
[
0
]);
...
...
@@ -39,7 +38,26 @@ AVFilterBufferRef *avfilter_default_get_video_buffer(AVFilterLink *link, int per
{
int
linesize
[
4
];
uint8_t
*
data
[
4
];
int
i
;
AVFilterBufferRef
*
picref
=
NULL
;
AVFilterPool
*
pool
=
link
->
pool
;
if
(
pool
)
for
(
i
=
0
;
i
<
POOL_SIZE
;
i
++
){
picref
=
pool
->
pic
[
i
];
if
(
picref
&&
picref
->
buf
->
format
==
link
->
format
&&
picref
->
buf
->
w
==
w
&&
picref
->
buf
->
h
==
h
){
AVFilterBuffer
*
pic
=
picref
->
buf
;
pool
->
pic
[
i
]
=
NULL
;
pool
->
count
--
;
picref
->
video
->
w
=
w
;
picref
->
video
->
h
=
h
;
picref
->
perms
=
perms
|
AV_PERM_READ
;
picref
->
format
=
link
->
format
;
pic
->
refcount
=
1
;
memcpy
(
picref
->
data
,
pic
->
data
,
sizeof
(
picref
->
data
));
memcpy
(
picref
->
linesize
,
pic
->
linesize
,
sizeof
(
picref
->
linesize
));
return
picref
;
}
}
// +2 is needed for swscaler, +16 to be SIMD-friendly
if
(
av_image_alloc
(
data
,
linesize
,
w
,
h
,
link
->
format
,
16
)
<
0
)
...
...
@@ -51,6 +69,8 @@ AVFilterBufferRef *avfilter_default_get_video_buffer(AVFilterLink *link, int per
av_free
(
data
[
0
]);
return
NULL
;
}
picref
->
buf
->
priv
=
link
;
picref
->
buf
->
free
=
NULL
;
return
picref
;
}
...
...
libavfilter/internal.h
View file @
39f66edb
...
...
@@ -27,6 +27,12 @@
#include "avfilter.h"
#include "avfiltergraph.h"
#define POOL_SIZE 32
typedef
struct
AVFilterPool
{
AVFilterBufferRef
*
pic
[
POOL_SIZE
];
int
count
;
}
AVFilterPool
;
/**
* Check for the validity of graph.
*
...
...
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