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
41b7c75d
Commit
41b7c75d
authored
Aug 10, 2007
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable nut muxer
Originally committed as revision 10043 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
100d8eb8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
1 deletion
+3
-1
Makefile
libavformat/Makefile
+1
-0
allformats.c
libavformat/allformats.c
+1
-1
allformats.h
libavformat/allformats.h
+1
-0
No files found.
libavformat/Makefile
View file @
41b7c75d
...
...
@@ -102,6 +102,7 @@ OBJS-$(CONFIG_MXF_DEMUXER) += mxf.o
OBJS-$(CONFIG_NSV_DEMUXER)
+=
nsvdec.o
OBJS-$(CONFIG_NULL_MUXER)
+=
raw.o
OBJS-$(CONFIG_NUT_DEMUXER)
+=
nutdec.o
nut.o
riff.o
OBJS-$(CONFIG_NUT_MUXER)
+=
nutenc.o
nut.o
riff.o
OBJS-$(CONFIG_NUV_DEMUXER)
+=
nuv.o
riff.o
OBJS-$(CONFIG_OGG_DEMUXER)
+=
ogg2.o
\
oggparsevorbis.o
\
...
...
libavformat/allformats.c
View file @
41b7c75d
...
...
@@ -117,7 +117,7 @@ void av_register_all(void)
REGISTER_DEMUXER
(
MXF
,
mxf
);
REGISTER_DEMUXER
(
NSV
,
nsv
);
REGISTER_MUXER
(
NULL
,
null
);
REGISTER_
DEMUXER
(
NUT
,
nut
);
REGISTER_
MUXDEMUX
(
NUT
,
nut
);
REGISTER_DEMUXER
(
NUV
,
nuv
);
REGISTER_DEMUXER
(
OGG
,
ogg
);
REGISTER_MUXER
(
OGG
,
ogg
);
...
...
libavformat/allformats.h
View file @
41b7c75d
...
...
@@ -160,6 +160,7 @@ extern AVOutputFormat mpeg2vob_muxer;
extern
AVOutputFormat
mpegts_muxer
;
extern
AVOutputFormat
mpjpeg_muxer
;
extern
AVOutputFormat
null_muxer
;
extern
AVOutputFormat
nut_muxer
;
extern
AVOutputFormat
ogg_muxer
;
extern
AVOutputFormat
pcm_alaw_muxer
;
extern
AVOutputFormat
pcm_mulaw_muxer
;
...
...
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