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
2d3842f5
Commit
2d3842f5
authored
Jun 09, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat: add mjpeg_probe()
Fixes Ticket3679 Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
2ffe55a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
1 deletion
+59
-1
rawdec.c
libavformat/rawdec.c
+59
-1
No files found.
libavformat/rawdec.c
View file @
2d3842f5
...
...
@@ -135,7 +135,65 @@ AVInputFormat ff_latm_demuxer = {
#endif
#if CONFIG_MJPEG_DEMUXER
FF_DEF_RAWVIDEO_DEMUXER
(
mjpeg
,
"raw MJPEG video"
,
NULL
,
"mjpg,mjpeg,mpo"
,
AV_CODEC_ID_MJPEG
)
static
int
mjpeg_probe
(
AVProbeData
*
p
)
{
int
i
;
int
state
=
-
1
;
int
nb_invalid
=
0
;
int
nb_frames
=
0
;
for
(
i
=
0
;
i
<
p
->
buf_size
-
2
;
i
++
)
{
int
c
;
if
(
p
->
buf
[
i
]
!=
0xFF
)
continue
;
c
=
p
->
buf
[
i
+
1
];
switch
(
c
)
{
case
0xD8
:
state
=
0xD8
;
break
;
case
0xC0
:
case
0xC1
:
case
0xC2
:
case
0xC3
:
case
0xC5
:
case
0xC6
:
case
0xC7
:
case
0xF7
:
if
(
state
==
0xD8
)
{
state
=
0xC0
;
}
else
nb_invalid
++
;
break
;
case
0xDA
:
if
(
state
==
0xC0
)
{
state
=
0xDA
;
}
else
nb_invalid
++
;
break
;
case
0xD9
:
if
(
state
==
0xDA
)
{
state
=
0xD9
;
nb_frames
++
;
}
else
nb_invalid
++
;
break
;
default:
if
(
(
c
>=
0x02
&&
c
<=
0xBF
)
||
c
==
0xC8
)
{
nb_invalid
++
;
}
}
}
if
(
nb_invalid
==
0
&&
nb_frames
>
2
)
return
AVPROBE_SCORE_EXTENSION
/
2
;
if
(
nb_invalid
*
4
+
1
<
nb_frames
)
return
AVPROBE_SCORE_EXTENSION
/
4
;
return
0
;
}
FF_DEF_RAWVIDEO_DEMUXER
(
mjpeg
,
"raw MJPEG video"
,
mjpeg_probe
,
"mjpg,mjpeg,mpo"
,
AV_CODEC_ID_MJPEG
)
#endif
#if CONFIG_MLP_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