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
343f8d51
Commit
343f8d51
authored
Sep 04, 2019
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/wcmv: prevent frame copying when outputting duplicate frames
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
51029992
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
wcmv.c
libavcodec/wcmv.c
+5
-3
No files found.
libavcodec/wcmv.c
View file @
343f8d51
...
@@ -45,7 +45,7 @@ static int decode_frame(AVCodecContext *avctx,
...
@@ -45,7 +45,7 @@ static int decode_frame(AVCodecContext *avctx,
{
{
WCMVContext
*
s
=
avctx
->
priv_data
;
WCMVContext
*
s
=
avctx
->
priv_data
;
AVFrame
*
frame
=
data
;
AVFrame
*
frame
=
data
;
int
skip
,
blocks
,
zret
,
ret
,
intra
=
0
,
bpp
=
s
->
bpp
;
int
skip
,
blocks
,
zret
,
ret
,
intra
=
0
,
flags
=
0
,
bpp
=
s
->
bpp
;
GetByteContext
gb
;
GetByteContext
gb
;
uint8_t
*
dst
;
uint8_t
*
dst
;
...
@@ -56,11 +56,13 @@ static int decode_frame(AVCodecContext *avctx,
...
@@ -56,11 +56,13 @@ static int decode_frame(AVCodecContext *avctx,
}
}
bytestream2_init
(
&
gb
,
avpkt
->
data
,
avpkt
->
size
);
bytestream2_init
(
&
gb
,
avpkt
->
data
,
avpkt
->
size
);
blocks
=
bytestream2_get_le16
(
&
gb
);
if
(
!
blocks
)
flags
|=
FF_REGET_BUFFER_FLAG_READONLY
;
if
((
ret
=
ff_reget_buffer
(
avctx
,
s
->
prev_frame
,
0
))
<
0
)
if
((
ret
=
ff_reget_buffer
(
avctx
,
s
->
prev_frame
,
flags
))
<
0
)
return
ret
;
return
ret
;
blocks
=
bytestream2_get_le16
(
&
gb
);
if
(
blocks
>
5
)
{
if
(
blocks
>
5
)
{
GetByteContext
bgb
;
GetByteContext
bgb
;
int
x
=
0
,
size
;
int
x
=
0
,
size
;
...
...
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