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
33e665a6
Commit
33e665a6
authored
Jul 01, 2013
by
Michael Niedermayer
Committed by
Luca Barbato
Jul 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jpeg2000: Update pixel format support
Signed-off-by:
Luca Barbato
<
lu_zero@gentoo.org
>
parent
db13e02c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
30 deletions
+20
-30
jpeg2000dec.c
libavcodec/jpeg2000dec.c
+20
-30
No files found.
libavcodec/jpeg2000dec.c
View file @
33e665a6
...
...
@@ -235,15 +235,6 @@ static int get_siz(Jpeg2000DecoderContext *s)
s
->
avctx
->
height
=
ff_jpeg2000_ceildivpow2
(
s
->
height
-
s
->
image_offset_y
,
s
->
reduction_factor
);
switch
(
s
->
avctx
->
profile
)
{
case
FF_PROFILE_JPEG2000_DCINEMA_2K
:
case
FF_PROFILE_JPEG2000_DCINEMA_4K
:
/* XYZ color-space for digital cinema profiles */
s
->
avctx
->
pix_fmt
=
AV_PIX_FMT_XYZ12
;
break
;
default:
/* For other profiles selects color-space according number of
* components and bit depth precision. */
switch
(
s
->
ncomponents
)
{
case
1
:
if
(
s
->
precision
>
8
)
...
...
@@ -252,21 +243,28 @@ static int get_siz(Jpeg2000DecoderContext *s)
s
->
avctx
->
pix_fmt
=
AV_PIX_FMT_GRAY8
;
break
;
case
3
:
switch
(
s
->
avctx
->
profile
)
{
case
FF_PROFILE_JPEG2000_DCINEMA_2K
:
case
FF_PROFILE_JPEG2000_DCINEMA_4K
:
/* XYZ color-space for digital cinema profiles */
s
->
avctx
->
pix_fmt
=
AV_PIX_FMT_XYZ12
;
break
;
default:
if
(
s
->
precision
>
8
)
s
->
avctx
->
pix_fmt
=
AV_PIX_FMT_RGB48
;
else
s
->
avctx
->
pix_fmt
=
AV_PIX_FMT_RGB24
;
break
;
}
break
;
case
4
:
s
->
avctx
->
pix_fmt
=
AV_PIX_FMT_BGR
A
;
s
->
avctx
->
pix_fmt
=
AV_PIX_FMT_RGB
A
;
break
;
default:
/* pixel format can not be identified */
s
->
avctx
->
pix_fmt
=
AV_PIX_FMT_NONE
;
break
;
}
break
;
}
return
0
;
}
...
...
@@ -1135,11 +1133,6 @@ static int jpeg2000_decode_tile(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile,
if
(
tile
->
codsty
[
0
].
mct
)
mct_decode
(
s
,
tile
);
if
(
s
->
avctx
->
pix_fmt
==
AV_PIX_FMT_BGRA
)
{
// RGBA -> BGRA
FFSWAP
(
float
*
,
tile
->
comp
[
0
].
f_data
,
tile
->
comp
[
2
].
f_data
);
FFSWAP
(
int
*
,
tile
->
comp
[
0
].
i_data
,
tile
->
comp
[
2
].
i_data
);
}
if
(
s
->
precision
<=
8
)
{
for
(
compno
=
0
;
compno
<
s
->
ncomponents
;
compno
++
)
{
Jpeg2000Component
*
comp
=
tile
->
comp
+
compno
;
...
...
@@ -1443,8 +1436,5 @@ AVCodec ff_jpeg2000_decoder = {
.
init_static_data
=
jpeg2000_init_static_data
,
.
decode
=
jpeg2000_decode_frame
,
.
priv_class
=
&
class
,
.
pix_fmts
=
(
enum
AVPixelFormat
[])
{
AV_PIX_FMT_XYZ12
,
AV_PIX_FMT_GRAY8
,
-
1
},
.
profiles
=
NULL_IF_CONFIG_SMALL
(
profiles
)
};
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