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
cf666651
Commit
cf666651
authored
Feb 07, 2018
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat: fix stream_segment muxer build dependencies
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
651d5f96
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
Makefile
libavformat/Makefile
+1
-0
segment.c
libavformat/segment.c
+4
-0
No files found.
libavformat/Makefile
View file @
cf666651
...
...
@@ -474,6 +474,7 @@ OBJS-$(CONFIG_SRT_DEMUXER) += srtdec.o subtitles.o
OBJS-$(CONFIG_SRT_MUXER)
+=
srtenc.o
OBJS-$(CONFIG_STL_DEMUXER)
+=
stldec.o
subtitles.o
OBJS-$(CONFIG_STR_DEMUXER)
+=
psxstr.o
OBJS-$(CONFIG_STREAM_SEGMENT_MUXER)
+=
segment.o
OBJS-$(CONFIG_SUBVIEWER1_DEMUXER)
+=
subviewer1dec.o
subtitles.o
OBJS-$(CONFIG_SUBVIEWER_DEMUXER)
+=
subviewerdec.o
subtitles.o
OBJS-$(CONFIG_SUP_DEMUXER)
+=
supdec.o
...
...
libavformat/segment.c
View file @
cf666651
...
...
@@ -1064,6 +1064,7 @@ static const AVOption options[] = {
{
NULL
},
};
#if CONFIG_SEGMENT_MUXER
static
const
AVClass
seg_class
=
{
.
class_name
=
"segment muxer"
,
.
item_name
=
av_default_item_name
,
...
...
@@ -1084,7 +1085,9 @@ AVOutputFormat ff_segment_muxer = {
.
check_bitstream
=
seg_check_bitstream
,
.
priv_class
=
&
seg_class
,
};
#endif
#if CONFIG_STREAM_SEGMENT_MUXER
static
const
AVClass
sseg_class
=
{
.
class_name
=
"stream_segment muxer"
,
.
item_name
=
av_default_item_name
,
...
...
@@ -1105,3 +1108,4 @@ AVOutputFormat ff_stream_segment_muxer = {
.
check_bitstream
=
seg_check_bitstream
,
.
priv_class
=
&
sseg_class
,
};
#endif
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