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
46ce9ded
Commit
46ce9ded
authored
Jun 01, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tiff: K&R formatting cosmetics
parent
f849a77e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
237 additions
and
233 deletions
+237
-233
tiff.c
libavcodec/tiff.c
+59
-55
tiff.h
libavcodec/tiff.h
+24
-24
tiffenc.c
libavcodec/tiffenc.c
+154
-154
No files found.
libavcodec/tiff.c
View file @
46ce9ded
This diff is collapsed.
Click to expand it.
libavcodec/tiff.h
View file @
46ce9ded
...
...
@@ -31,37 +31,37 @@
#include <stdint.h>
/** abridged list of TIFF tags */
enum
TiffTags
{
TIFF_SUBFILE
=
0xfe
,
TIFF_WIDTH
=
0x100
,
enum
TiffTags
{
TIFF_SUBFILE
=
0xfe
,
TIFF_WIDTH
=
0x100
,
TIFF_HEIGHT
,
TIFF_BPP
,
TIFF_COMPR
,
TIFF_INVERT
=
0x106
,
TIFF_FILL_ORDER
=
0x10A
,
TIFF_STRIP_OFFS
=
0x111
,
TIFF_SAMPLES_PER_PIXEL
=
0x115
,
TIFF_ROWSPERSTRIP
=
0x116
,
TIFF_INVERT
=
0x106
,
TIFF_FILL_ORDER
=
0x10A
,
TIFF_STRIP_OFFS
=
0x111
,
TIFF_SAMPLES_PER_PIXEL
=
0x115
,
TIFF_ROWSPERSTRIP
=
0x116
,
TIFF_STRIP_SIZE
,
TIFF_XRES
=
0x11A
,
TIFF_YRES
=
0x11B
,
TIFF_PLANAR
=
0x11C
,
TIFF_XPOS
=
0x11E
,
TIFF_YPOS
=
0x11F
,
TIFF_T4OPTIONS
=
0x124
,
TIFF_XRES
=
0x11A
,
TIFF_YRES
=
0x11B
,
TIFF_PLANAR
=
0x11C
,
TIFF_XPOS
=
0x11E
,
TIFF_YPOS
=
0x11F
,
TIFF_T4OPTIONS
=
0x124
,
TIFF_T6OPTIONS
,
TIFF_RES_UNIT
=
0x128
,
TIFF_SOFTWARE_NAME
=
0x131
,
TIFF_PREDICTOR
=
0x13D
,
TIFF_PAL
=
0x140
,
TIFF_RES_UNIT
=
0x128
,
TIFF_SOFTWARE_NAME
=
0x131
,
TIFF_PREDICTOR
=
0x13D
,
TIFF_PAL
=
0x140
,
TIFF_YCBCR_COEFFICIENTS
=
0x211
,
TIFF_YCBCR_SUBSAMPLING
=
0x212
,
TIFF_YCBCR_POSITIONING
=
0x213
,
TIFF_REFERENCE_BW
=
0x214
,
TIFF_YCBCR_SUBSAMPLING
=
0x212
,
TIFF_YCBCR_POSITIONING
=
0x213
,
TIFF_REFERENCE_BW
=
0x214
,
};
/** list of TIFF compression types */
enum
TiffCompr
{
enum
TiffCompr
{
TIFF_RAW
=
1
,
TIFF_CCITT_RLE
,
TIFF_G3
,
...
...
@@ -71,10 +71,10 @@ enum TiffCompr{
TIFF_NEWJPEG
,
TIFF_ADOBE_DEFLATE
,
TIFF_PACKBITS
=
0x8005
,
TIFF_DEFLATE
=
0x80B2
TIFF_DEFLATE
=
0x80B2
};
enum
TiffTypes
{
enum
TiffTypes
{
TIFF_BYTE
=
1
,
TIFF_STRING
,
TIFF_SHORT
,
...
...
libavcodec/tiffenc.c
View file @
46ce9ded
This diff is collapsed.
Click to expand it.
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