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
fcc1280a
Commit
fcc1280a
authored
Oct 14, 2015
by
Luca Barbato
Committed by
Vittorio Giovara
Oct 21, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rawenc: Replace avpicture functions with imgutils
Signed-off-by:
Vittorio Giovara
<
vittorio.giovara@gmail.com
>
parent
3496cec4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
rawenc.c
libavcodec/rawenc.c
+7
-3
No files found.
libavcodec/rawenc.c
View file @
fcc1280a
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
#include "internal.h"
#include "internal.h"
#include "libavutil/pixdesc.h"
#include "libavutil/pixdesc.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "libavutil/internal.h"
#include "libavutil/internal.h"
static
av_cold
int
raw_encode_init
(
AVCodecContext
*
avctx
)
static
av_cold
int
raw_encode_init
(
AVCodecContext
*
avctx
)
...
@@ -50,15 +51,18 @@ FF_ENABLE_DEPRECATION_WARNINGS
...
@@ -50,15 +51,18 @@ FF_ENABLE_DEPRECATION_WARNINGS
static
int
raw_encode
(
AVCodecContext
*
avctx
,
AVPacket
*
pkt
,
static
int
raw_encode
(
AVCodecContext
*
avctx
,
AVPacket
*
pkt
,
const
AVFrame
*
frame
,
int
*
got_packet
)
const
AVFrame
*
frame
,
int
*
got_packet
)
{
{
int
ret
=
avpicture_get_size
(
avctx
->
pix_fmt
,
avctx
->
width
,
avctx
->
height
);
int
ret
=
av_image_get_buffer_size
(
avctx
->
pix_fmt
,
avctx
->
width
,
avctx
->
height
,
1
);
if
(
ret
<
0
)
if
(
ret
<
0
)
return
ret
;
return
ret
;
if
((
ret
=
ff_alloc_packet
(
pkt
,
ret
))
<
0
)
if
((
ret
=
ff_alloc_packet
(
pkt
,
ret
))
<
0
)
return
ret
;
return
ret
;
if
((
ret
=
avpicture_layout
((
const
AVPicture
*
)
frame
,
avctx
->
pix_fmt
,
avctx
->
width
,
if
((
ret
=
av_image_copy_to_buffer
(
pkt
->
data
,
pkt
->
size
,
avctx
->
height
,
pkt
->
data
,
pkt
->
size
))
<
0
)
frame
->
data
,
frame
->
linesize
,
frame
->
format
,
frame
->
width
,
frame
->
height
,
1
))
<
0
)
return
ret
;
return
ret
;
if
(
avctx
->
codec_tag
==
AV_RL32
(
"yuv2"
)
&&
ret
>
0
&&
if
(
avctx
->
codec_tag
==
AV_RL32
(
"yuv2"
)
&&
ret
>
0
&&
...
...
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