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
96e7c9cb
Commit
96e7c9cb
authored
Feb 23, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/roqvideoenc: Allocate and reference coded_frame correctly
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
6c9537b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
roqvideoenc.c
libavcodec/roqvideoenc.c
+5
-2
No files found.
libavcodec/roqvideoenc.c
View file @
96e7c9cb
...
...
@@ -960,7 +960,8 @@ static int roq_encode_video(RoqContext *enc)
reconstruct_and_encode_image
(
enc
,
tempData
,
enc
->
width
,
enc
->
height
,
enc
->
width
*
enc
->
height
/
64
);
enc
->
avctx
->
coded_frame
=
enc
->
current_frame
;
av_frame_unref
(
enc
->
avctx
->
coded_frame
);
av_frame_ref
(
enc
->
avctx
->
coded_frame
,
enc
->
current_frame
);
/* Rotate frame history */
FFSWAP
(
AVFrame
*
,
enc
->
current_frame
,
enc
->
last_frame
);
...
...
@@ -981,6 +982,7 @@ static av_cold int roq_encode_end(AVCodecContext *avctx)
av_frame_free
(
&
enc
->
current_frame
);
av_frame_free
(
&
enc
->
last_frame
);
av_frame_free
(
&
enc
->
avctx
->
coded_frame
);
av_freep
(
&
enc
->
tmpData
);
av_freep
(
&
enc
->
this_motion4
);
...
...
@@ -1019,7 +1021,8 @@ static av_cold int roq_encode_init(AVCodecContext *avctx)
enc
->
last_frame
=
av_frame_alloc
();
enc
->
current_frame
=
av_frame_alloc
();
if
(
!
enc
->
last_frame
||
!
enc
->
current_frame
)
{
avctx
->
coded_frame
=
av_frame_alloc
();
if
(
!
enc
->
last_frame
||
!
enc
->
current_frame
||
!
avctx
->
coded_frame
)
{
roq_encode_end
(
avctx
);
return
AVERROR
(
ENOMEM
);
}
...
...
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