summaryrefslogtreecommitdiff
path: root/libavcodec/libaomdec.c
Commit message (Collapse)AuthorAge
* Revert "avcodec/libaomdec: auto insert dump_extra bitstream filter"James Almer2018-08-17
| | | | | | | This reverts commit e45ed15594a2553056a577177591fbe55694af44. The Matroska spec was updated to not remove Sequence Header OBUs from key frames, so this is no longer needed.
* avcodec/libaomdec: auto insert dump_extra bitstream filterJames Almer2018-08-02
| | | | | | | | | Some containers, like Matroska, may propagate key frames with no Sequence Header OBU since it's provided in extradata instead. With this change, the Sequence Header will be appended to the packet data before calling aom_codec_decode(). Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/libaomdec: fix broken pix_fmt changes from the previous commitJames Almer2018-04-04
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/libaomdec: add support for monochrome filesJames Almer2018-04-03
| | | | | | | All such files are signaled as I42016, as there's no monochrome value in aom_img_fmt_t. Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/libaomdec: remove duplicate codeJames Almer2018-04-03
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/libaomdec: remove references to gbrp pixfmtJames Almer2018-04-02
| | | | | | Support for this needs testing, so remove for now. Signed-off-by: James Almer <jamrial@gmail.com>
* libavcodec/libaomdec: add support for transfer characteristics and color ↵James Almer2018-03-29
| | | | | | primaries Signed-off-by: James Almer <jamrial@gmail.com>
* libavcodec/libaomdec: use the matrix coefficients value from aom_imageJames Almer2018-03-29
| | | | | | "color_space" is no longer a sytax element in libaom. Signed-off-by: James Almer <jamrial@gmail.com>
* avcode/profiles: add AV1 profilesJames Almer2018-03-29
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/libaomdec: remove references to yuv440p pixfmtJames Almer2018-03-28
| | | | | | | While the enums are defined in the libaom headers, it's not officially supported. Signed-off-by: James Almer <jamrial@gmail.com>
* Merge commit 'c438899a706422b8362a13714580e988be4d638b'James Almer2018-03-28
| | | | | | | | | | * commit 'c438899a706422b8362a13714580e988be4d638b': Add AV1 video decoding support through libaom This contains some extra changes taken from the libvpx decoder wrapper, most of them contained in the set_pix_fmt() function. Merged-by: James Almer <jamrial@gmail.com>
* Add AV1 video decoding support through libaomLuca Barbato2018-03-12
Signed-off-by: Diego Biurrun <diego@biurrun.de> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>