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
63d86443
Commit
63d86443
authored
Apr 20, 2008
by
Benjamin Larsson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Raw dts muxer
Originally committed as revision 12912 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
f55b299a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
allformats.c
libavformat/allformats.c
+1
-1
raw.c
libavformat/raw.c
+14
-0
No files found.
libavformat/allformats.c
View file @
63d86443
...
...
@@ -70,7 +70,7 @@ void av_register_all(void)
REGISTER_MUXER
(
CRC
,
crc
);
REGISTER_DEMUXER
(
DAUD
,
daud
);
REGISTER_DEMUXER
(
DSICIN
,
dsicin
);
REGISTER_
DEMUXER
(
DTS
,
dts
);
REGISTER_
MUXDEMUX
(
DTS
,
dts
);
REGISTER_MUXDEMUX
(
DV
,
dv
);
REGISTER_DEMUXER
(
DXA
,
dxa
);
REGISTER_DEMUXER
(
EA
,
ea
);
...
...
libavformat/raw.c
View file @
63d86443
...
...
@@ -513,6 +513,20 @@ AVOutputFormat ac3_muxer = {
raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
AVOutputFormat
dts_muxer
=
{
"dts"
,
"raw dts"
,
"audio/x-dca"
,
"dts"
,
0
,
CODEC_ID_DTS
,
0
,
NULL
,
raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
#endif //CONFIG_MUXERS
AVInputFormat
dts_demuxer
=
{
...
...
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