Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
a09c499a
Commit
a09c499a
authored
Apr 17, 2015
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rawenc: properly allocate coded_frame
parent
a0f29460
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
rawenc.c
libavcodec/rawenc.c
+11
-2
No files found.
libavcodec/rawenc.c
View file @
a09c499a
...
@@ -35,7 +35,10 @@ static av_cold int raw_encode_init(AVCodecContext *avctx)
...
@@ -35,7 +35,10 @@ static av_cold int raw_encode_init(AVCodecContext *avctx)
{
{
const
AVPixFmtDescriptor
*
desc
=
av_pix_fmt_desc_get
(
avctx
->
pix_fmt
);
const
AVPixFmtDescriptor
*
desc
=
av_pix_fmt_desc_get
(
avctx
->
pix_fmt
);
avctx
->
coded_frame
=
avctx
->
priv_data
;
avctx
->
coded_frame
=
av_frame_alloc
();
if
(
!
avctx
->
coded_frame
)
return
AVERROR
(
ENOMEM
);
avctx
->
coded_frame
->
pict_type
=
AV_PICTURE_TYPE_I
;
avctx
->
coded_frame
->
pict_type
=
AV_PICTURE_TYPE_I
;
avctx
->
coded_frame
->
key_frame
=
1
;
avctx
->
coded_frame
->
key_frame
=
1
;
avctx
->
bits_per_coded_sample
=
av_get_bits_per_pixel
(
desc
);
avctx
->
bits_per_coded_sample
=
av_get_bits_per_pixel
(
desc
);
...
@@ -69,12 +72,18 @@ static int raw_encode(AVCodecContext *avctx, AVPacket *pkt,
...
@@ -69,12 +72,18 @@ static int raw_encode(AVCodecContext *avctx, AVPacket *pkt,
return
0
;
return
0
;
}
}
static
av_cold
int
raw_encode_close
(
AVCodecContext
*
avctx
)
{
av_frame_free
(
&
avctx
->
coded_frame
);
return
0
;
}
AVCodec
ff_rawvideo_encoder
=
{
AVCodec
ff_rawvideo_encoder
=
{
.
name
=
"rawvideo"
,
.
name
=
"rawvideo"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"raw video"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"raw video"
),
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
id
=
AV_CODEC_ID_RAWVIDEO
,
.
id
=
AV_CODEC_ID_RAWVIDEO
,
.
priv_data_size
=
sizeof
(
AVFrame
),
.
init
=
raw_encode_init
,
.
init
=
raw_encode_init
,
.
close
=
raw_encode_close
,
.
encode2
=
raw_encode
,
.
encode2
=
raw_encode
,
};
};
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