summaryrefslogtreecommitdiffstats
path: root/libavcodec/pngdec.c
Commit message (Expand)AuthorAgeFilesLines
* avcodec/pngdec: add support for 'over' blend operation for 'none' dispose ope...Benoit Fouet2014-11-281-27/+133
* avcodec/pngdec: split P frames handling to a separate function.Benoit Fouet2014-11-281-12/+17
* avcodec/pngdec: Fix paeth prediction with small imagesMichael Niedermayer2014-11-261-2/+4
* avcodec/pngdec: Check IHDR/IDAT orderMichael Niedermayer2014-11-261-0/+6
* avcodec/pngdec: add APNG support.Benoit Fouet2014-11-211-3/+136
* avcodec/pngdec: split frame decoding in its own function.Benoit Fouet2014-11-141-39/+49
* avcodec/pngdec: create a function to handle small (<=4) bits per pixel values.Benoit Fouet2014-11-141-69/+75
* avcodec/pngdec: use else if instead of if for small bpp handling.Benoit Fouet2014-11-141-4/+2
* avcodec/pngdec: fix some indentation/whitespacesBenoit Fouet2014-11-141-9/+9
* avcodec/pngdec: create a function to decode tRNS chunk.Benoit Fouet2014-11-141-13/+20
* avcodec/pngdec: create a function to decode PLTE chunk.Benoit Fouet2014-11-141-17/+24
* avcodec/pngdec: create a function to decode IDAT chunk.Benoit Fouet2014-11-141-98/+109
* avcodec/pngdec: create a function to decode pHYs chunk.Benoit Fouet2014-11-141-9/+18
* avcodec/pngdec: create a function to decode IHDR chunk.Benoit Fouet2014-11-141-20/+28
* avcodec/pngdec: rename decode_frame to decode_frame_pngBenoit Fouet2014-11-141-2/+2
* avcodec/pngdec: Calculate MPNG bytewidth more defensivelyMichael Niedermayer2014-10-031-1/+2
* avcodec/pngdec: Check bits per pixel before setting monoblack pixel formatMichael Niedermayer2014-10-031-1/+1
* avcodec/pngdec: print the actual number of bytes left in the error caseMichael Niedermayer2014-09-111-1/+1
* Merge commit 'e64f0bf2d2b1347ec9461f0e82852a62e8c6ffbe'Michael Niedermayer2014-08-041-0/+3
|\
| * png: support reading gray+alpha at 16 bitsVittorio Giovara2014-08-041-0/+3
| * png: disable broken MMX/SIMD code for bpp <= 2Vittorio Giovara2014-08-041-1/+1
* | Merge commit 'e96c3b81cadd0ba84d43b1f3a54980df3785d9a5'Michael Niedermayer2014-08-041-1/+1
|\ \ | |/
| * avutil: rename AV_PIX_FMT_Y400A to AV_PIX_FMT_YA8Vittorio Giovara2014-08-041-1/+1
* | Merge commit '92a36a6b3338df5f5cff573a486e182005367c24'Michael Niedermayer2014-08-011-10/+16
|\ \ | |/
| * pngdec: correctly indent macrosVittorio Giovara2014-08-011-17/+17
* | avcodec/pngdec: fix () in OP_* macrosMichael Niedermayer2014-05-251-2/+2
* | Merge commit 'c598b569fb3d1f4b6c4868fe64f6989254df5186'Michael Niedermayer2014-03-171-90/+96
|\ \ | |/
| * png: K&R formatting cosmeticsVittorio Giovara2014-03-161-104/+117
* | Decode png images without iend chunk.Carl Eugen Hoyos2014-03-111-0/+3
* | avcodec/pngdec: fix signed overflowMichael Niedermayer2013-12-181-1/+1
* | Merge commit 'b2bed9325dbd6be0da1d91ffed3f513c40274fd2'Michael Niedermayer2013-10-041-1/+1
|\ \ | |/
| * cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun2013-10-031-1/+1
* | Merge commit 'a81cad8f86d1feb7e4bfae29e43f3e994935a5c7'Michael Niedermayer2013-09-301-2/+4
|\ \ | |/
| * pngdec: Stop trying to decode once inflate returns Z_STREAM_ENDMartin Storsjö2013-09-291-0/+4
* | avcodec/pngdec: check for stream end in png_decode_idat()Michael Niedermayer2013-09-251-0/+2
* | avcodec/png: remove obsolete commentsPaul B Mahol2013-09-081-4/+0
* | avcodec/pngdec: fix last_row_size typeMichael Niedermayer2013-08-301-1/+1
* | avcodec/pngdec: Fix padded alloc code with threadsMichael Niedermayer2013-08-301-2/+5
* | pngdec: do not release buffer on failure instead report full progressPaul B Mahol2013-08-231-1/+1
* | pngdec: use av_fast_padded_malloc(z)Paul B Mahol2013-08-231-7/+11
* | pngdec: frame multithreading supportPaul B Mahol2013-08-221-18/+51
* | lavc/pngdec: return meaningful error codesStefano Sabatini2013-06-251-6/+6
* | pngdec: dont treat mpng like png with key and non keyframesMichael Niedermayer2013-06-041-1/+1
* | Merge commit 'b3ea76624ad1baab0b6bcc13f3f856be2f958110'Michael Niedermayer2013-05-161-2/+0
|\ \ | |/
| * Remove commented-out debug #define cruftDiego Biurrun2013-05-161-2/+0
* | lavc: factorize ff_{thread_,re,}get_buffer error messages.Clément Bœsch2013-03-131-3/+1
* | Merge commit '759001c534287a96dc96d1e274665feb7059145d'Michael Niedermayer2013-03-121-31/+22
|\ \ | |/
| * lavc decoders: work with refcounted frames.Anton Khirnov2013-03-081-24/+15
* | pngdec: use AVFrame accessor functionsMichael Niedermayer2013-03-011-1/+1
* | pngdec/filter: dont access out of array elements at the endMichael Niedermayer2013-02-121-8/+4
OpenPOWER on IntegriCloud