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
dc4ed3b1
Commit
dc4ed3b1
authored
Jun 05, 2006
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
probe for mpeg audio
Originally committed as revision 5457 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
065ee1ec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
1 deletion
+27
-1
mp3.c
libavformat/mp3.c
+27
-1
No files found.
libavformat/mp3.c
View file @
dc4ed3b1
...
...
@@ -240,6 +240,32 @@ static void id3_create_tag(AVFormatContext *s, uint8_t *buf)
}
/* mp3 read */
static
int
mp3_read_probe
(
AVProbeData
*
p
)
{
int
d
;
if
(
p
->
buf_size
<
4
)
return
0
;
if
(
p
->
buf
[
0
]
==
'I'
&&
p
->
buf
[
1
]
==
'D'
&&
p
->
buf
[
2
]
==
'3'
&&
p
->
buf
[
3
]
<
5
)
return
AVPROBE_SCORE_MAX
;
if
(
p
->
buf
[
0
]
!=
0xff
)
return
0
;
d
=
p
->
buf
[
1
];
if
((
d
&
0xe0
)
!=
0xe0
||
((
d
&
0x18
)
==
0x08
||
(
d
&
0x06
)
==
0
))
return
0
;
d
=
p
->
buf
[
2
];
if
((
d
&
0xf0
)
==
0xf0
||
(
d
&
0x0c
)
==
0x0c
)
return
0
;
return
AVPROBE_SCORE_MAX
;
}
static
int
mp3_read_header
(
AVFormatContext
*
s
,
AVFormatParameters
*
ap
)
{
...
...
@@ -346,7 +372,7 @@ AVInputFormat mp3_iformat = {
"mp3"
,
"MPEG audio"
,
0
,
NULL
,
mp3_read_probe
,
mp3_read_header
,
mp3_read_packet
,
mp3_read_close
,
...
...
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