summaryrefslogtreecommitdiff
path: root/libavformat/vpcc.c
Commit message (Collapse)AuthorAge
* Remove/replace some unnecessary avcodec.h inclusionsAndreas Rheinhardt2021-07-22
| | | | | | | Also remove other unnecessary headers and include headers directly while at it. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avformat/vpcc: fix values in VP9 level detection heuristicsJames Almer2018-09-15
| | | | | | | The levels are stored as decimal values, not hexadecimal. Reviewed-by: James Zern <jzern@google.com> Signed-off-by: James Almer <jamrial@gmail.com>
* avformat/vpcc: Calculate VP9 level from Luma's Sample rate and Picture sizeKarthick Jeyapal2018-04-26
|
* avformat/vpcc: add ff_isom_get_vpcc_features()James Almer2018-04-22
| | | | | | | Should be useful for muxers that require values as defined in the vpcc atom but don't need to write the atom itself. Signed-off-by: James Almer <jamrial@gmail.com>
* movenc/isom: update vpcC box to version 1.0 of the specificationHendrik Leppkes2017-05-16
| | | | | | | | | This brings our generation of the vpcC box up to date to version 1.0 of the VP Codec ISO Media File Format Binding. Specifically, color/transfer properties are now written with values based on ISO/IEC 23001-8, which is the same reference specification the AVColor* enumerations are based on.
* Add experimental support for vp9 in iso-bmffKongqun Yang2016-06-17
Implemented according to the draft specification "VP Codec ISO Media File Format Binding": http://www.webmproject.org/vp9/#draft-vp-codec-iso-media-file-format-binding '-strict -2' is required to use this feature. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>