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
d52a1be4
Commit
d52a1be4
authored
Jan 04, 2019
by
Peter Ross
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/vp3: ref_frame/ref_frames are only required when HAVE_THREADS=1
parent
f477ee3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vp3.c
libavcodec/vp3.c
+1
-1
No files found.
libavcodec/vp3.c
View file @
d52a1be4
...
@@ -1961,6 +1961,7 @@ fail:
...
@@ -1961,6 +1961,7 @@ fail:
return
ret
;
return
ret
;
}
}
#if HAVE_THREADS
static
int
ref_frame
(
Vp3DecodeContext
*
s
,
ThreadFrame
*
dst
,
ThreadFrame
*
src
)
static
int
ref_frame
(
Vp3DecodeContext
*
s
,
ThreadFrame
*
dst
,
ThreadFrame
*
src
)
{
{
ff_thread_release_buffer
(
s
->
avctx
,
dst
);
ff_thread_release_buffer
(
s
->
avctx
,
dst
);
...
@@ -1979,7 +1980,6 @@ static int ref_frames(Vp3DecodeContext *dst, Vp3DecodeContext *src)
...
@@ -1979,7 +1980,6 @@ static int ref_frames(Vp3DecodeContext *dst, Vp3DecodeContext *src)
return
0
;
return
0
;
}
}
#if HAVE_THREADS
static
int
vp3_update_thread_context
(
AVCodecContext
*
dst
,
const
AVCodecContext
*
src
)
static
int
vp3_update_thread_context
(
AVCodecContext
*
dst
,
const
AVCodecContext
*
src
)
{
{
Vp3DecodeContext
*
s
=
dst
->
priv_data
,
*
s1
=
src
->
priv_data
;
Vp3DecodeContext
*
s
=
dst
->
priv_data
,
*
s1
=
src
->
priv_data
;
...
...
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