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
2786ac77
Commit
2786ac77
authored
Jul 29, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zmbv: use av_image_copy_plane()
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
994e0934
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
zmbv.c
libavcodec/zmbv.c
+3
-5
No files found.
libavcodec/zmbv.c
View file @
2786ac77
...
...
@@ -28,6 +28,7 @@
#include <stdlib.h>
#include "libavutil/common.h"
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "internal.h"
...
...
@@ -554,11 +555,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPac
case
ZMBV_FMT_24BPP
:
#endif
case
ZMBV_FMT_32BPP
:
for
(
j
=
0
;
j
<
c
->
height
;
j
++
)
{
memcpy
(
out
,
src
,
c
->
stride
);
src
+=
c
->
stride
;
out
+=
frame
->
linesize
[
0
];
}
av_image_copy_plane
(
out
,
frame
->
linesize
[
0
],
src
,
c
->
stride
,
c
->
stride
,
c
->
height
);
break
;
default:
av_log
(
avctx
,
AV_LOG_ERROR
,
"Cannot handle format %i
\n
"
,
c
->
fmt
);
...
...
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