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
67fd8df4
Commit
67fd8df4
authored
Mar 16, 2018
by
Valery Kot
Committed by
James Almer
Apr 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/openh264enc.c: generate IDR frame in response to I frame pict_type
Signed-off-by:
Valery Kot
<
valery.kot@gmail.com
>
parent
b08c132a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
libopenh264enc.c
libavcodec/libopenh264enc.c
+4
-0
No files found.
libavcodec/libopenh264enc.c
View file @
67fd8df4
...
...
@@ -246,6 +246,10 @@ static int svc_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
sp
.
iPicWidth
=
avctx
->
width
;
sp
.
iPicHeight
=
avctx
->
height
;
if
(
frame
->
pict_type
==
AV_PICTURE_TYPE_I
)
{
(
*
s
->
encoder
)
->
ForceIntraFrame
(
s
->
encoder
,
true
);
}
encoded
=
(
*
s
->
encoder
)
->
EncodeFrame
(
s
->
encoder
,
&
sp
,
&
fbi
);
if
(
encoded
!=
cmResultSuccess
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"EncodeFrame failed
\n
"
);
...
...
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