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
03d7d8fa
Commit
03d7d8fa
authored
Jan 01, 2012
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support gray8a pam encoding.
parent
490c97bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
pamenc.c
libavcodec/pamenc.c
+7
-1
No files found.
libavcodec/pamenc.c
View file @
03d7d8fa
...
@@ -62,6 +62,12 @@ static int pam_encode_frame(AVCodecContext *avctx, unsigned char *outbuf,
...
@@ -62,6 +62,12 @@ static int pam_encode_frame(AVCodecContext *avctx, unsigned char *outbuf,
maxval
=
255
;
maxval
=
255
;
tuple_type
=
"GRAYSCALE"
;
tuple_type
=
"GRAYSCALE"
;
break
;
break
;
case
PIX_FMT_GRAY8A
:
n
=
w
*
2
;
depth
=
2
;
maxval
=
255
;
tuple_type
=
"GRAYSCALE_ALPHA"
;
break
;
case
PIX_FMT_RGB24
:
case
PIX_FMT_RGB24
:
n
=
w
*
3
;
n
=
w
*
3
;
depth
=
3
;
depth
=
3
;
...
@@ -122,6 +128,6 @@ AVCodec ff_pam_encoder = {
...
@@ -122,6 +128,6 @@ AVCodec ff_pam_encoder = {
.
priv_data_size
=
sizeof
(
PNMContext
),
.
priv_data_size
=
sizeof
(
PNMContext
),
.
init
=
ff_pnm_init
,
.
init
=
ff_pnm_init
,
.
encode
=
pam_encode_frame
,
.
encode
=
pam_encode_frame
,
.
pix_fmts
=
(
const
enum
PixelFormat
[]){
PIX_FMT_RGB24
,
PIX_FMT_RGB32
,
PIX_FMT_GRAY8
,
PIX_FMT_MONOBLACK
,
PIX_FMT_NONE
},
.
pix_fmts
=
(
const
enum
PixelFormat
[]){
PIX_FMT_RGB24
,
PIX_FMT_RGB32
,
PIX_FMT_GRAY8
,
PIX_FMT_
GRAY8A
,
PIX_FMT_
MONOBLACK
,
PIX_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"PAM (Portable AnyMap) image"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"PAM (Portable AnyMap) image"
),
};
};
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