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
a4b5863e
Commit
a4b5863e
authored
Jun 02, 2013
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation of libavcodec/tiff.c
parent
379ad978
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tiff.c
libavcodec/tiff.c
+2
-2
No files found.
libavcodec/tiff.c
View file @
a4b5863e
...
@@ -627,7 +627,7 @@ static int init_image(TiffContext *s, AVFrame *frame)
...
@@ -627,7 +627,7 @@ static int init_image(TiffContext *s, AVFrame *frame)
s
->
avctx
->
pix_fmt
=
s
->
le
?
AV_PIX_FMT_GRAY16LE
:
AV_PIX_FMT_GRAY16BE
;
s
->
avctx
->
pix_fmt
=
s
->
le
?
AV_PIX_FMT_GRAY16LE
:
AV_PIX_FMT_GRAY16BE
;
break
;
break
;
case
162
:
case
162
:
s
->
avctx
->
pix_fmt
=
s
>
planar
?
AV_PIX_FMT_NONE
:
AV_PIX_FMT_GRAY8A
;
s
->
avctx
->
pix_fmt
=
s
-
>
planar
?
AV_PIX_FMT_NONE
:
AV_PIX_FMT_GRAY8A
;
break
;
break
;
case
324
:
case
324
:
s
->
avctx
->
pix_fmt
=
s
->
planar
?
AV_PIX_FMT_GBRAP
:
AV_PIX_FMT_RGBA
;
s
->
avctx
->
pix_fmt
=
s
->
planar
?
AV_PIX_FMT_GBRAP
:
AV_PIX_FMT_RGBA
;
...
@@ -1206,7 +1206,7 @@ static int decode_frame(AVCodecContext *avctx,
...
@@ -1206,7 +1206,7 @@ static int decode_frame(AVCodecContext *avctx,
}
}
}
}
if
(
s
->
planar
&&
s
->
bpp
_
count
>
2
)
{
if
(
s
->
planar
&&
s
->
bppcount
>
2
)
{
FFSWAP
(
uint8_t
*
,
p
->
data
[
0
],
p
->
data
[
2
]);
FFSWAP
(
uint8_t
*
,
p
->
data
[
0
],
p
->
data
[
2
]);
FFSWAP
(
int
,
p
->
linesize
[
0
],
p
->
linesize
[
2
]);
FFSWAP
(
int
,
p
->
linesize
[
0
],
p
->
linesize
[
2
]);
FFSWAP
(
uint8_t
*
,
p
->
data
[
0
],
p
->
data
[
1
]);
FFSWAP
(
uint8_t
*
,
p
->
data
[
0
],
p
->
data
[
1
]);
...
...
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