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
25c29d32
Commit
25c29d32
authored
Mar 05, 2015
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libopenh264enc: Add support for building with OpenH264 1.4
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
88b160a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
libopenh264enc.c
libavcodec/libopenh264enc.c
+8
-0
No files found.
libavcodec/libopenh264enc.c
View file @
25c29d32
...
...
@@ -39,6 +39,10 @@ typedef struct SVCContext {
char
*
profile
;
}
SVCContext
;
#define OPENH264_VER_AT_LEAST(maj, min) \
((OPENH264_MAJOR > (maj)) || \
(OPENH264_MAJOR == (maj) && OPENH264_MINOR >= (min)))
#define OFFSET(x) offsetof(SVCContext, x)
#define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
static
const
AVOption
options
[]
=
{
...
...
@@ -103,7 +107,11 @@ static av_cold int svc_encode_init(AVCodecContext *avctx)
param
.
bEnableLongTermReference
=
0
;
param
.
iLtrMarkPeriod
=
30
;
param
.
uiIntraPeriod
=
avctx
->
gop_size
;
#if OPENH264_VER_AT_LEAST(1, 4)
param
.
eSpsPpsIdStrategy
=
CONSTANT_ID
;
#else
param
.
bEnableSpsPpsIdAddition
=
0
;
#endif
param
.
bPrefixNalAddingCtrl
=
0
;
param
.
iLoopFilterDisableIdc
=
!
s
->
loopfilter
;
param
.
iEntropyCodingModeFlag
=
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