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
e9980c45
Commit
e9980c45
authored
Jul 27, 2018
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/vp9_superframe_bsf: implement a AVBSFContext.flush() callback
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
63e0846c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
vp9_superframe_bsf.c
libavcodec/vp9_superframe_bsf.c
+12
-0
No files found.
libavcodec/vp9_superframe_bsf.c
View file @
e9980c45
...
...
@@ -189,6 +189,17 @@ static int vp9_superframe_init(AVBSFContext *ctx)
return
0
;
}
static
void
vp9_superframe_flush
(
AVBSFContext
*
ctx
)
{
VP9BSFContext
*
s
=
ctx
->
priv_data
;
int
n
;
// unref cached data
for
(
n
=
0
;
n
<
s
->
n_cache
;
n
++
)
av_packet_unref
(
s
->
cache
[
n
]);
s
->
n_cache
=
0
;
}
static
void
vp9_superframe_close
(
AVBSFContext
*
ctx
)
{
VP9BSFContext
*
s
=
ctx
->
priv_data
;
...
...
@@ -208,6 +219,7 @@ const AVBitStreamFilter ff_vp9_superframe_bsf = {
.
priv_data_size
=
sizeof
(
VP9BSFContext
),
.
filter
=
vp9_superframe_filter
,
.
init
=
vp9_superframe_init
,
.
flush
=
vp9_superframe_flush
,
.
close
=
vp9_superframe_close
,
.
codec_ids
=
codec_ids
,
};
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