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
94e86ae1
Commit
94e86ae1
authored
Jul 11, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mjpegdec: initialize source variables before gbr remap
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
71a2e524
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
mjpegdec.c
libavcodec/mjpegdec.c
+4
-4
No files found.
libavcodec/mjpegdec.c
View file @
94e86ae1
...
...
@@ -1231,6 +1231,10 @@ int ff_mjpeg_decode_sos(MJpegDecodeContext *s, const uint8_t *mb_bitmask,
&&
nb_components
==
3
&&
s
->
nb_components
==
3
&&
i
)
index
=
3
-
i
;
s
->
nb_blocks
[
i
]
=
s
->
h_count
[
index
]
*
s
->
v_count
[
index
];
s
->
h_scount
[
i
]
=
s
->
h_count
[
index
];
s
->
v_scount
[
i
]
=
s
->
v_count
[
index
];
if
(
nb_components
==
3
&&
s
->
nb_components
==
3
&&
s
->
avctx
->
pix_fmt
==
AV_PIX_FMT_GBR24P
)
index
=
(
i
+
2
)
%
3
;
if
(
nb_components
==
1
&&
s
->
nb_components
==
3
&&
s
->
avctx
->
pix_fmt
==
AV_PIX_FMT_GBR24P
)
...
...
@@ -1238,10 +1242,6 @@ int ff_mjpeg_decode_sos(MJpegDecodeContext *s, const uint8_t *mb_bitmask,
s
->
comp_index
[
i
]
=
index
;
s
->
nb_blocks
[
i
]
=
s
->
h_count
[
index
]
*
s
->
v_count
[
index
];
s
->
h_scount
[
i
]
=
s
->
h_count
[
index
];
s
->
v_scount
[
i
]
=
s
->
v_count
[
index
];
s
->
dc_index
[
i
]
=
get_bits
(
&
s
->
gb
,
4
);
s
->
ac_index
[
i
]
=
get_bits
(
&
s
->
gb
,
4
);
...
...
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