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
60ab582a
Commit
60ab582a
authored
Jan 06, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/huffyuv: add GRAY8 support
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
22f59a8c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
huffyuvdec.c
libavcodec/huffyuvdec.c
+3
-0
huffyuvenc.c
libavcodec/huffyuvenc.c
+2
-0
No files found.
libavcodec/huffyuvdec.c
View file @
60ab582a
...
...
@@ -364,6 +364,9 @@ static av_cold int decode_init(AVCodecContext *avctx)
&
s
->
chroma_v_shift
);
}
else
{
switch
(
(
s
->
chroma
<<
10
)
|
(
s
->
yuv
<<
9
)
|
(
s
->
alpha
<<
8
)
|
((
s
->
bps
-
1
)
<<
4
)
|
s
->
chroma_h_shift
|
(
s
->
chroma_v_shift
<<
2
))
{
case
0x070
:
avctx
->
pix_fmt
=
AV_PIX_FMT_GRAY8
;
break
;
case
0x470
:
avctx
->
pix_fmt
=
AV_PIX_FMT_GBRP
;
break
;
...
...
libavcodec/huffyuvenc.c
View file @
60ab582a
...
...
@@ -187,6 +187,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
case
AV_PIX_FMT_YUV411P
:
case
AV_PIX_FMT_YUV440P
:
case
AV_PIX_FMT_GBRP
:
case
AV_PIX_FMT_GRAY8
:
s
->
version
=
3
;
break
;
case
AV_PIX_FMT_RGB32
:
...
...
@@ -858,6 +859,7 @@ AVCodec ff_ffvhuff_encoder = {
AV_PIX_FMT_YUV420P
,
AV_PIX_FMT_YUV422P
,
AV_PIX_FMT_YUV444P
,
AV_PIX_FMT_YUV411P
,
AV_PIX_FMT_YUV410P
,
AV_PIX_FMT_YUV440P
,
AV_PIX_FMT_GBRP
,
AV_PIX_FMT_GRAY8
,
AV_PIX_FMT_RGB24
,
AV_PIX_FMT_RGB32
,
AV_PIX_FMT_NONE
},
...
...
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