Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
77b5c82b
Commit
77b5c82b
authored
Oct 05, 2011
by
Alex Converse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
isom: Add MPEG4SYSTEMS dummy object type indication.
parent
bc2dd367
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
avcodec.h
libavcodec/avcodec.h
+2
-0
isom.c
libavformat/isom.c
+2
-0
No files found.
libavcodec/avcodec.h
View file @
77b5c82b
...
...
@@ -372,6 +372,8 @@ enum CodecID {
CODEC_ID_MPEG2TS
=
0x20000
,
/**< _FAKE_ codec to indicate a raw MPEG-2 TS
* stream (only used by libavformat) */
CODEC_ID_MPEG4SYSTEMS
=
0x20001
,
/**< _FAKE_ codec to indicate a MPEG-4 Systems
* stream (only used by libavformat) */
CODEC_ID_FFMETADATA
=
0x21000
,
///< Dummy codec for streams containing only metadata information.
};
...
...
libavformat/isom.c
View file @
77b5c82b
...
...
@@ -61,6 +61,8 @@ const AVCodecTag ff_mp4_obj_type[] = {
{
CODEC_ID_VORBIS
,
0xDD
},
/* non standard, gpac uses it */
{
CODEC_ID_DVD_SUBTITLE
,
0xE0
},
/* non standard, see unsupported-embedded-subs-2.mp4 */
{
CODEC_ID_QCELP
,
0xE1
},
{
CODEC_ID_MPEG4SYSTEMS
,
0x01
},
{
CODEC_ID_MPEG4SYSTEMS
,
0x02
},
{
CODEC_ID_NONE
,
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