Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
6369766f
Commit
6369766f
authored
Jan 27, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/huffyuv: support gbrp9/10/12/14
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
7cf8918b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
huffyuvdec.c
libavcodec/huffyuvdec.c
+15
-0
huffyuvenc.c
libavcodec/huffyuvenc.c
+7
-1
No files found.
libavcodec/huffyuvdec.c
View file @
6369766f
...
@@ -389,6 +389,21 @@ static av_cold int decode_init(AVCodecContext *avctx)
...
@@ -389,6 +389,21 @@ static av_cold int decode_init(AVCodecContext *avctx)
case
0x470
:
case
0x470
:
avctx
->
pix_fmt
=
AV_PIX_FMT_GBRP
;
avctx
->
pix_fmt
=
AV_PIX_FMT_GBRP
;
break
;
break
;
case
0x480
:
avctx
->
pix_fmt
=
AV_PIX_FMT_GBRP9
;
break
;
case
0x490
:
avctx
->
pix_fmt
=
AV_PIX_FMT_GBRP10
;
break
;
case
0x4B0
:
avctx
->
pix_fmt
=
AV_PIX_FMT_GBRP12
;
break
;
case
0x4D0
:
avctx
->
pix_fmt
=
AV_PIX_FMT_GBRP14
;
break
;
case
0x4F0
:
avctx
->
pix_fmt
=
AV_PIX_FMT_GBRP16
;
break
;
case
0x570
:
case
0x570
:
avctx
->
pix_fmt
=
AV_PIX_FMT_GBRAP
;
avctx
->
pix_fmt
=
AV_PIX_FMT_GBRAP
;
break
;
break
;
...
...
libavcodec/huffyuvenc.c
View file @
6369766f
...
@@ -254,6 +254,11 @@ static av_cold int encode_init(AVCodecContext *avctx)
...
@@ -254,6 +254,11 @@ static av_cold int encode_init(AVCodecContext *avctx)
case
AV_PIX_FMT_YUV411P
:
case
AV_PIX_FMT_YUV411P
:
case
AV_PIX_FMT_YUV440P
:
case
AV_PIX_FMT_YUV440P
:
case
AV_PIX_FMT_GBRP
:
case
AV_PIX_FMT_GBRP
:
case
AV_PIX_FMT_GBRP9
:
case
AV_PIX_FMT_GBRP10
:
case
AV_PIX_FMT_GBRP12
:
case
AV_PIX_FMT_GBRP14
:
case
AV_PIX_FMT_GBRP16
:
case
AV_PIX_FMT_GRAY8
:
case
AV_PIX_FMT_GRAY8
:
case
AV_PIX_FMT_GRAY16
:
case
AV_PIX_FMT_GRAY16
:
case
AV_PIX_FMT_YUVA444P
:
case
AV_PIX_FMT_YUVA444P
:
...
@@ -301,7 +306,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
...
@@ -301,7 +306,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
s
->
vlc_n
=
FFMIN
(
s
->
n
,
MAX_VLC_N
);
s
->
vlc_n
=
FFMIN
(
s
->
n
,
MAX_VLC_N
);
avctx
->
bits_per_coded_sample
=
s
->
bitstream_bpp
;
avctx
->
bits_per_coded_sample
=
s
->
bitstream_bpp
;
s
->
decorrelate
=
s
->
bitstream_bpp
>=
24
&&
!
s
->
yuv
&&
avctx
->
pix_fmt
!=
AV_PIX_FMT_GBRP
;
s
->
decorrelate
=
s
->
bitstream_bpp
>=
24
&&
!
s
->
yuv
&&
!
(
desc
->
flags
&
AV_PIX_FMT_FLAG_PLANAR
)
;
s
->
predictor
=
avctx
->
prediction_method
;
s
->
predictor
=
avctx
->
prediction_method
;
s
->
interlaced
=
avctx
->
flags
&
CODEC_FLAG_INTERLACED_ME
?
1
:
0
;
s
->
interlaced
=
avctx
->
flags
&
CODEC_FLAG_INTERLACED_ME
?
1
:
0
;
if
(
avctx
->
context_model
==
1
)
{
if
(
avctx
->
context_model
==
1
)
{
...
@@ -1012,6 +1017,7 @@ AVCodec ff_ffvhuff_encoder = {
...
@@ -1012,6 +1017,7 @@ AVCodec ff_ffvhuff_encoder = {
AV_PIX_FMT_YUV420P
,
AV_PIX_FMT_YUV422P
,
AV_PIX_FMT_YUV444P
,
AV_PIX_FMT_YUV411P
,
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_YUV410P
,
AV_PIX_FMT_YUV440P
,
AV_PIX_FMT_GBRP
,
AV_PIX_FMT_GBRP
,
AV_PIX_FMT_GBRP9
,
AV_PIX_FMT_GBRP10
,
AV_PIX_FMT_GBRP12
,
AV_PIX_FMT_GBRP14
,
AV_PIX_FMT_GRAY8
,
AV_PIX_FMT_GRAY16
,
AV_PIX_FMT_GRAY8
,
AV_PIX_FMT_GRAY16
,
AV_PIX_FMT_YUVA420P
,
AV_PIX_FMT_YUVA422P
,
AV_PIX_FMT_YUVA444P
,
AV_PIX_FMT_YUVA420P
,
AV_PIX_FMT_YUVA422P
,
AV_PIX_FMT_YUVA444P
,
AV_PIX_FMT_GBRAP
,
AV_PIX_FMT_GBRAP
,
...
...
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