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
f2c469b7
Commit
f2c469b7
authored
Apr 17, 2017
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mjpeg: Report non-3 component rgb lossless as not supported
Bug-Id: 1043 CC: libav-stable@libav.org
parent
279e3aaa
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
mjpegdec.c
libavcodec/mjpegdec.c
+6
-0
No files found.
libavcodec/mjpegdec.c
View file @
f2c469b7
...
@@ -1129,6 +1129,12 @@ int ff_mjpeg_decode_sos(MJpegDecodeContext *s, const uint8_t *mb_bitmask,
...
@@ -1129,6 +1129,12 @@ int ff_mjpeg_decode_sos(MJpegDecodeContext *s, const uint8_t *mb_bitmask,
for
(
i
=
s
->
mjpb_skiptosod
;
i
>
0
;
i
--
)
for
(
i
=
s
->
mjpb_skiptosod
;
i
>
0
;
i
--
)
skip_bits
(
&
s
->
gb
,
8
);
skip_bits
(
&
s
->
gb
,
8
);
if
(
s
->
lossless
&&
s
->
rgb
&&
nb_components
!=
3
)
{
avpriv_request_sample
(
s
->
avctx
,
"Lossless RGB image without 3 components"
);
return
AVERROR_PATCHWELCOME
;
}
next_field:
next_field:
for
(
i
=
0
;
i
<
nb_components
;
i
++
)
for
(
i
=
0
;
i
<
nb_components
;
i
++
)
s
->
last_dc
[
i
]
=
1024
;
s
->
last_dc
[
i
]
=
1024
;
...
...
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