summaryrefslogtreecommitdiff
path: root/libavformat/frmdec.c
Commit message (Collapse)AuthorAge
* avformat: Remove unnecessary inclusions from libavcodecAndreas Rheinhardt2022-03-23
| | | | | | Also improve the other headers a bit while at it. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avformat: Constify all muxer/demuxersAndreas Rheinhardt2021-04-27
| | | | | | | 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/frmdec: Simplify finding pixel formatAndreas Rheinhardt2021-03-03
| | | | | | | | | | | The fourccs used by the Megalux Frame format to determine the pixel format are actually no fourccs at all as they are a single byte. Furthermore, their range is continuous (1-5), so they are actually ordinary indices. So treat them as such and don't use PixelFormatTags for them. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
* lavf: Constify the probe function argument.Carl Eugen Hoyos2019-03-21
| | | | | Reviewed-by: Lauri Kasanen Reviewed-by: Tomas Härdin
* Merge commit '9200514ad8717c63f82101dc394f4378854325bf'Derek Buitenhuis2016-04-10
| | | | | | | | | | | | | | | | * commit '9200514ad8717c63f82101dc394f4378854325bf': lavf: replace AVStream.codec with AVStream.codecpar This has been a HUGE effort from: - Derek Buitenhuis <derek.buitenhuis@gmail.com> - Hendrik Leppkes <h.leppkes@gmail.com> - wm4 <nfxjfg@googlemail.com> - Clément Bœsch <clement@stupeflix.com> - James Almer <jamrial@gmail.com> - Michael Niedermayer <michael@niedermayer.cc> - Rostislav Pehlivanov <atomnuker@gmail.com> Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* remove all uses of the deprecated avpicture_get_size() functionEddie Hao2016-01-17
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* frmdec: do not abuse ff_codec_get_id()Paul B Mahol2013-01-12
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* frmdec: tag 5 is AV_PIX_FMT_BGRA with reversed alpha (0=solid/opaque .. ↵Peter Ross2013-01-10
| | | | 255=transparent)
* frmdec: tag 2 is AV_PIX_FMT_RGB0Peter Ross2013-01-07
|
* frmdec: terminate frm_pix_fmt_tagsPeter Ross2013-01-07
|
* frmdec: use AV_PIX_FMT_xxxPeter Ross2013-01-07
|
* frmdec: reduce probe score to reflect test accuracy (and pass probetest)Peter Ross2013-01-06
|
* Megalux Frame demuxerPeter Ross2013-01-06