Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-10-04avcodec/libaomdec: remove bogus commentJames Almer
It's a remnant from libvpx that's not valid for libaom. Signed-off-by: James Almer <jamrial@gmail.com>
2018-09-13avcodec/libaom: fix setting amount of threadsJames Almer
The libaom doxy says that a value of 0 for the threads fields is equivalent to a value of 1, whereas for avctx->thread_count it means the maximum amount of threads possible for the host system. Use av_cpu_count() to get the correct thread count when auto threads is requested. Reviewed-by: Jan Ekström <jeebjp@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
2018-08-17Revert "avcodec/libaomdec: auto insert dump_extra bitstream filter"James Almer
This reverts commit e45ed15594a2553056a577177591fbe55694af44. The Matroska spec was updated to not remove Sequence Header OBUs from key frames, so this is no longer needed.
2018-08-02avcodec/libaomdec: auto insert dump_extra bitstream filterJames Almer
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>
2018-04-04avcodec/libaomdec: fix broken pix_fmt changes from the previous commitJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2018-04-03avcodec/libaomdec: add support for monochrome filesJames Almer
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>
2018-04-03avcodec/libaomdec: remove duplicate codeJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2018-04-02avcodec/libaomdec: remove references to gbrp pixfmtJames Almer
Support for this needs testing, so remove for now. Signed-off-by: James Almer <jamrial@gmail.com>
2018-03-29libavcodec/libaomdec: add support for transfer characteristics and color ↵James Almer
primaries Signed-off-by: James Almer <jamrial@gmail.com>
2018-03-29libavcodec/libaomdec: use the matrix coefficients value from aom_imageJames Almer
"color_space" is no longer a sytax element in libaom. Signed-off-by: James Almer <jamrial@gmail.com>
2018-03-29avcode/profiles: add AV1 profilesJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2018-03-29avcodec/libaomdec: remove references to yuv440p pixfmtJames Almer
While the enums are defined in the libaom headers, it's not officially supported. Signed-off-by: James Almer <jamrial@gmail.com>
2018-03-29Merge commit 'c438899a706422b8362a13714580e988be4d638b'James Almer
* 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>
2018-03-12Add AV1 video decoding support through libaomLuca Barbato
Signed-off-by: Diego Biurrun <diego@biurrun.de> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>