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
915bfa33
Commit
915bfa33
authored
Nov 02, 2010
by
Janne Grunau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpegts: support LATM syntax
Originally committed as revision 25643 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
136e19e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
mpegts.c
libavformat/mpegts.c
+1
-4
No files found.
libavformat/mpegts.c
View file @
915bfa33
...
...
@@ -497,7 +497,7 @@ static const StreamType ISO_types[] = {
{
0x04
,
AVMEDIA_TYPE_AUDIO
,
CODEC_ID_MP3
},
{
0x0f
,
AVMEDIA_TYPE_AUDIO
,
CODEC_ID_AAC
},
{
0x10
,
AVMEDIA_TYPE_VIDEO
,
CODEC_ID_MPEG4
},
//{ 0x11, AVMEDIA_TYPE_AUDIO, CODEC_ID_AAC
}, /* LATM syntax */
{
0x11
,
AVMEDIA_TYPE_AUDIO
,
CODEC_ID_AAC_LATM
},
/* LATM syntax */
{
0x1b
,
AVMEDIA_TYPE_VIDEO
,
CODEC_ID_H264
},
{
0xd1
,
AVMEDIA_TYPE_VIDEO
,
CODEC_ID_DIRAC
},
{
0xea
,
AVMEDIA_TYPE_VIDEO
,
CODEC_ID_VC1
},
...
...
@@ -594,9 +594,6 @@ static int mpegts_set_stream_info(AVStream *st, PESContext *pes,
sub_pes
->
sub_st
=
pes
->
sub_st
=
sub_st
;
}
}
if
(
pes
->
stream_type
==
0x11
)
av_log
(
pes
->
stream
,
AV_LOG_WARNING
,
"AAC LATM not currently supported, patch welcome
\n
"
);
if
(
st
->
codec
->
codec_id
==
CODEC_ID_NONE
)
mpegts_find_stream_type
(
st
,
pes
->
stream_type
,
MISC_types
);
...
...
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