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
871e2f4f
Commit
871e2f4f
authored
Jan 05, 2012
by
ami_stuff
Committed by
Carl Eugen Hoyos
Jan 05, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support 16bpp grayscale pam decoding.
Fixes ticket #881.
parent
02026d08
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
pnm.c
libavcodec/pnm.c
+5
-2
No files found.
libavcodec/pnm.c
View file @
871e2f4f
...
...
@@ -111,10 +111,13 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s)
avctx
->
height
=
h
;
s
->
maxval
=
maxval
;
if
(
depth
==
1
)
{
if
(
maxval
==
1
)
if
(
maxval
==
1
)
{
avctx
->
pix_fmt
=
PIX_FMT_MONOWHITE
;
else
}
else
if
(
maxval
==
255
)
{
avctx
->
pix_fmt
=
PIX_FMT_GRAY8
;
}
else
{
avctx
->
pix_fmt
=
PIX_FMT_GRAY16BE
;
}
}
else
if
(
depth
==
3
)
{
if
(
maxval
<
256
)
{
avctx
->
pix_fmt
=
PIX_FMT_RGB24
;
...
...
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