index
:
ffmpeg-streaming
master
Raptor Engineering's fork of FFmpeg with streaming enhancements https://git.ffmpeg.org/ffmpeg.git
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
libavcodec
/
tiff.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
tiff: support decoding GBRP and GBRAP formats
Paul B Mahol
2015-01-14
1
-57
/
+81
*
tiff: support encoding and decoding 64bit images
Carl Eugen Hoyos
2014-12-18
1
-2
/
+7
*
tiff: Return proper error for missing LZMA compression
Diego Elio Pettenò
2014-08-18
1
-0
/
+3
*
tiff: Improve grayscale support
Diego Elio Pettenò
2014-08-10
1
-11
/
+3
*
tiff: support reading gray+alpha at 8 bits
Carl Eugen Hoyos
2014-08-04
1
-0
/
+3
*
tiff: support reading gray+alpha at 16 bits
Vittorio Giovara
2014-08-04
1
-0
/
+3
*
tiff: Replace deprecated PIX_FMT names by modern ones
Diego Biurrun
2014-08-02
1
-2
/
+2
*
Revert "tiff: support reading gray+alpha at 8 bits"
Janne Grunau
2014-07-21
1
-3
/
+0
*
tiff: support reading gray+alpha at 8 bits
Carl Eugen Hoyos
2014-07-20
1
-0
/
+3
*
tiffdec: support predictor type 2 with RGB48 pixel format
Jean First
2014-04-12
1
-4
/
+18
*
tiffdec: remove an unneeded variable
Justin Ruggles
2014-04-12
1
-3
/
+1
*
tiff: use a better name and enum values for PhotometricInterpretation
Justin Ruggles
2014-04-12
1
-17
/
+28
*
tiffdec: use a single strip if RowsPerStrip is 0
Justin Ruggles
2014-04-12
1
-8
/
+3
*
tiffdec: use bytestream2 to simplify overread/overwrite protection
Justin Ruggles
2014-04-12
1
-138
/
+111
*
tiffdec: use correct data type for palette entries and set alpha to 0xFF
Justin Ruggles
2014-04-12
1
-5
/
+6
*
tiffdec: rename variables for consistency and fix variable shadowing
Jean First
2014-04-12
1
-8
/
+5
*
tiff: stop using deprecated avcodec_set_dimensions
Anton Khirnov
2013-10-31
1
-2
/
+2
*
tiff: do not overread the source buffer
Luca Barbato
2013-06-07
1
-1
/
+4
*
tiff: cleanup the error paths
Luca Barbato
2013-06-07
1
-10
/
+15
*
tiff: refactor fax support in a separate function
Luca Barbato
2013-06-07
1
-32
/
+33
*
tiff: refactor deflate support in a separate function
Luca Barbato
2013-06-07
1
-25
/
+37
*
tiff: K&R formatting cosmetics
Diego Biurrun
2013-06-02
1
-55
/
+59
*
lavc decoders: work with refcounted frames.
Anton Khirnov
2013-03-08
1
-18
/
+9
*
tiff: return meaningful error codes.
Anton Khirnov
2013-01-06
1
-27
/
+27
*
lavc: fix decode_frame() third parameter semantics for video decoders
Anton Khirnov
2012-12-04
1
-2
/
+2
*
lavc: add a wrapper for AVCodecContext.get_buffer().
Anton Khirnov
2012-12-04
1
-1
/
+2
*
Move av_reverse table to libavcodec
Diego Biurrun
2012-10-12
1
-3
/
+4
*
Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormat
Anton Khirnov
2012-10-08
1
-7
/
+7
*
tiffdec: Add support for GRAY16LE.
Alex Converse
2012-09-19
1
-1
/
+1
*
Don't include common.h from avutil.h
Martin Storsjö
2012-08-15
1
-0
/
+1
*
Replace all CODEC_ID_* with AV_CODEC_ID_*
Anton Khirnov
2012-08-07
1
-1
/
+1
*
tiffdec: K&R cosmetics
Alex Converse
2012-04-13
1
-108
/
+147
*
tiffdec: Add a malloc check and refactor another.
Alex Converse
2012-04-13
1
-5
/
+10
*
cosmetics: Align codec declarations
Martin Storsjö
2012-04-06
1
-1
/
+1
*
Replace memset(0) by zero initializations.
Diego Biurrun
2012-03-28
1
-2
/
+1
*
tiffdec: Prevent illegal memory access caused by recycled pointers.
Alex Converse
2012-03-07
1
-0
/
+2
*
Replace AVFrame pointer type punning by proper struct member assignments.
Diego Biurrun
2012-03-01
1
-1
/
+1
*
Remove unnecessary AVFrame pointer casts.
Diego Biurrun
2012-03-01
1
-3
/
+3
*
tiff: Prevent overreads in the type_sizes array.
Alex Converse
2012-02-23
1
-4
/
+11
*
tiff: Make the TIFF_LONG and TIFF_SHORT types unsigned.
Alex Converse
2012-02-23
1
-9
/
+9
*
tiffdec: fix out of bound reads/writes
Laurent Aimar
2011-10-10
1
-15
/
+25
*
lavc: use designated initialisers for all codecs.
Anton Khirnov
2011-07-29
1
-10
/
+8
*
doxygen: consistently place brief description
Diego Biurrun
2011-07-14
1
-1
/
+2
*
tiff: print log in case of unknown / unsupported tag.
Stefano Sabatini
2011-06-05
1
-0
/
+2
*
tiff: fix linesize for mono-white/black formats.
Stefano Sabatini
2011-06-05
1
-1
/
+1
*
tiff: set palette in the context when specified in TIFF_PAL tag
Stefano Sabatini
2011-05-24
1
-10
/
+13
*
tiff: add support for SamplesPerPixel tag in tiff_decode_tag()
Stefano Sabatini
2011-05-12
1
-57
/
+65
*
tiff: Prefer enum TiffCompr over int for TiffContext.compr.
Stefano Sabatini
2011-05-12
1
-1
/
+1
*
tiff: add support for inverted FillOrder for uncompressed data
Stefano Sabatini
2011-05-11
1
-1
/
+7
*
Replace FFmpeg with Libav in licence headers
Mans Rullgard
2011-03-19
1
-4
/
+4
[next]