Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
9145021d
Commit
9145021d
authored
15 years ago
by
Ramiro Polla
Browse files
Options
Downloads
Patches
Plain Diff
Add raw MLP muxer.
Originally committed as revision 18652 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
420df930
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libavformat/Makefile
+1
-0
1 addition, 0 deletions
libavformat/Makefile
libavformat/allformats.c
+1
-1
1 addition, 1 deletion
libavformat/allformats.c
libavformat/raw.c
+15
-0
15 additions, 0 deletions
libavformat/raw.c
with
17 additions
and
1 deletion
libavformat/Makefile
+
1
−
0
View file @
9145021d
...
...
@@ -89,6 +89,7 @@ OBJS-$(CONFIG_MATROSKA_MUXER) += matroskaenc.o matroska.o riff.o isom
OBJS-$(CONFIG_MJPEG_DEMUXER)
+=
raw.o
OBJS-$(CONFIG_MJPEG_MUXER)
+=
raw.o
OBJS-$(CONFIG_MLP_DEMUXER)
+=
raw.o id3v2.o
OBJS-$(CONFIG_MLP_MUXER)
+=
raw.o
OBJS-$(CONFIG_MM_DEMUXER)
+=
mm.o
OBJS-$(CONFIG_MMF_DEMUXER)
+=
mmf.o raw.o
OBJS-$(CONFIG_MMF_MUXER)
+=
mmf.o riff.o
...
...
This diff is collapsed.
Click to expand it.
libavformat/allformats.c
+
1
−
1
View file @
9145021d
...
...
@@ -102,7 +102,7 @@ void av_register_all(void)
REGISTER_MUXDEMUX
(
MATROSKA
,
matroska
);
REGISTER_MUXER
(
MATROSKA_AUDIO
,
matroska_audio
);
REGISTER_MUXDEMUX
(
MJPEG
,
mjpeg
);
REGISTER_DEMUX
ER
(
MLP
,
mlp
);
REGISTER_
MUX
DEMUX
(
MLP
,
mlp
);
REGISTER_DEMUXER
(
MM
,
mm
);
REGISTER_MUXDEMUX
(
MMF
,
mmf
);
REGISTER_MUXDEMUX
(
MOV
,
mov
);
...
...
This diff is collapsed.
Click to expand it.
libavformat/raw.c
+
15
−
0
View file @
9145021d
...
...
@@ -973,6 +973,21 @@ AVInputFormat mlp_demuxer = {
};
#endif
#ifdef CONFIG_MLP_MUXER
AVOutputFormat
mlp_muxer
=
{
"mlp"
,
NULL_IF_CONFIG_SMALL
(
"raw MLP"
),
NULL
,
"mlp"
,
0
,
CODEC_ID_MLP
,
CODEC_ID_NONE
,
NULL
,
raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
#endif
#if CONFIG_TRUEHD_DEMUXER
AVInputFormat
truehd_demuxer
=
{
"truehd"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment