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
881f96c4
Commit
881f96c4
authored
Sep 09, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/rawenc: drop sizeof(AVFrame) dependency
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b6305283
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
rawenc.c
libavcodec/rawenc.c
+8
-3
No files found.
libavcodec/rawenc.c
View file @
881f96c4
...
...
@@ -35,8 +35,7 @@ static av_cold int raw_encode_init(AVCodecContext *avctx)
{
const
AVPixFmtDescriptor
*
desc
=
av_pix_fmt_desc_get
(
avctx
->
pix_fmt
);
avctx
->
coded_frame
=
avctx
->
priv_data
;
avcodec_get_frame_defaults
(
avctx
->
coded_frame
);
avctx
->
coded_frame
=
av_frame_alloc
();
avctx
->
coded_frame
->
pict_type
=
AV_PICTURE_TYPE_I
;
avctx
->
bits_per_coded_sample
=
av_get_bits_per_pixel
(
desc
);
if
(
!
avctx
->
codec_tag
)
...
...
@@ -69,12 +68,18 @@ static int raw_encode(AVCodecContext *avctx, AVPacket *pkt,
return
0
;
}
static
av_cold
int
raw_close
(
AVCodecContext
*
avctx
)
{
av_frame_free
(
&
avctx
->
coded_frame
);
return
0
;
}
AVCodec
ff_rawvideo_encoder
=
{
.
name
=
"rawvideo"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"raw video"
),
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
id
=
AV_CODEC_ID_RAWVIDEO
,
.
priv_data_size
=
sizeof
(
AVFrame
),
.
init
=
raw_encode_init
,
.
encode2
=
raw_encode
,
.
close
=
raw_close
,
};
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