summaryrefslogtreecommitdiff
path: root/libavformat/fitsenc.c
Commit message (Collapse)AuthorAgeFilesLines
* avformat/avformat: Move AVOutputFormat internals out of public headerAndreas Rheinhardt2023-02-091-6/+7
| | | | | | | | | | | | | | This commit does for AVOutputFormat what commit 20f972701806be20a77f808db332d9489343bb78 did for AVCodec: It adds a new type FFOutputFormat, moves all the internals of AVOutputFormat to it and adds a now reduced AVOutputFormat as first member. This does not affect/improve extensibility of both public or private fields for muxers (it is still a mess due to lavd). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avformat/fitsenc: Simplify writing header paddingAndreas Rheinhardt2022-04-281-5/+2
| | | | Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avformat: Constify all muxer/demuxersAndreas Rheinhardt2021-04-271-1/+1
| | | | | | | This is possible now that the next-API is gone. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: James Almer <jamrial@gmail.com>
* avformat/fitsenc: write DATAMIN/DATAMAX to encoded outputPaul B Mahol2021-02-101-10/+29
| | | | | | There is no point in doing normalization when such files are decoded. Update fate test with new results.
* avformat/fitsenc: validate input pixel formatTimo Rothenpieler2017-11-131-1/+5
| | | | Fixes CID #1416961 and #1416962
* avformat/fitsenc: fill header line with spacesParas Chadha2017-09-121-1/+1
| | | | | Signed-off-by: Paras Chadha <paraschadha18@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* Add FITS MuxerParas Chadha2017-08-301-0/+183
Signed-off-by: Paras Chadha <paraschadha18@gmail.com>