summaryrefslogtreecommitdiff
path: root/libavcodec/lscrdec.c
Commit message (Collapse)AuthorAge
* lscrdec: add copyright headerAnton Khirnov2021-03-08
| | | | As requested by the author.
* lavc/lscrdec: use ff_reget_buffer()Anton Khirnov2021-02-24
| | | | | | It is simpler and more efficient. Suggested-by: James Almer <jamrial@gmail.com>
* lavc/lscrdec: drop unapplicable private capabilitiesAnton Khirnov2021-02-24
| | | | | | | FF_CODEC_CAP_ALLOCATE_PROGRESS makes no sense because the decoder does not support frame threading. FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM makes no sense because the decoder does not handle skip_frame.
* lavc: split LSCR decoder out of PNG decoderAnton Khirnov2021-02-24
It shares very little code with pngdec, so keeping them together only makes the code harder to read.