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
146d29c7
Commit
146d29c7
authored
Jul 06, 2012
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tiffenc: use av_get_bits_per_pixel() to get bpp
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
82c4abbf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
12 deletions
+3
-12
tiffenc.c
libavcodec/tiffenc.c
+3
-12
No files found.
libavcodec/tiffenc.c
View file @
146d29c7
...
...
@@ -246,39 +246,31 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
s
->
subsampling
[
0
]
=
1
;
s
->
subsampling
[
1
]
=
1
;
avctx
->
bits_per_coded_sample
=
s
->
bpp
=
av_get_bits_per_pixel
(
&
av_pix_fmt_descriptors
[
avctx
->
pix_fmt
]);
switch
(
avctx
->
pix_fmt
)
{
case
PIX_FMT_RGBA64LE
:
s
->
bpp
=
64
;
s
->
photometric_interpretation
=
2
;
break
;
case
PIX_FMT_RGB48LE
:
s
->
bpp
=
48
;
s
->
photometric_interpretation
=
2
;
break
;
case
PIX_FMT_RGBA
:
avctx
->
bits_per_coded_sample
=
s
->
bpp
=
32
;
s
->
photometric_interpretation
=
2
;
break
;
case
PIX_FMT_RGB24
:
avctx
->
bits_per_coded_sample
=
s
->
bpp
=
24
;
s
->
photometric_interpretation
=
2
;
break
;
case
PIX_FMT_GRAY8
:
avctx
->
bits_per_coded_sample
=
0x28
;
s
->
bpp
=
8
;
s
->
photometric_interpretation
=
1
;
break
;
case
PIX_FMT_PAL8
:
avctx
->
bits_per_coded_sample
=
s
->
bpp
=
8
;
s
->
photometric_interpretation
=
3
;
break
;
case
PIX_FMT_MONOBLACK
:
case
PIX_FMT_MONOWHITE
:
avctx
->
bits_per_coded_sample
=
s
->
bpp
=
1
;
s
->
photometric_interpretation
=
avctx
->
pix_fmt
==
PIX_FMT_MONOBLACK
;
break
;
case
PIX_FMT_YUV420P
:
...
...
@@ -289,7 +281,6 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
s
->
photometric_interpretation
=
6
;
avcodec_get_chroma_sub_sample
(
avctx
->
pix_fmt
,
&
shift_h
,
&
shift_v
);
s
->
bpp
=
8
+
(
16
>>
(
shift_h
+
shift_v
));
s
->
subsampling
[
0
]
=
1
<<
shift_h
;
s
->
subsampling
[
1
]
=
1
<<
shift_v
;
is_yuv
=
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