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

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/cdf.h
AgeCommit message (Collapse)Author
2019-08-13Add msac optimizationsHenrik Gramner
* Eliminate the trailing zero after the CDF probabilities. We can reuse the count value as a terminator instead. This reduces the size of the CDF context by around 8%. * Align the CDF arrays. * Various other minor optimizations.
2019-08-13Remove unused CDF:sHenrik Gramner
2019-04-15x86-64: Add msac_decode_symbol_adapt SSE2 asmHenrik Gramner
Also make various minor optimizations/style fixes to the MSAC C functions.
2019-02-13Remove leading double underscores from include guard definesMartin Storsjö
A symbol starting with two leading underscores is reserved for the compiler/standard library implementation. Also remove the trailing two double underscores for consistency and symmetry.
2019-02-13Use consistent include guard define symbolsMartin Storsjö
2018-12-10Make static CDF tables source directly from rodataRonald S. Bultje
Fixes #57, removes one rodata duplicate (vertical mv component is identical to horizontal one), and removes memcpy() of rodata tables to the source Dav1dThreadCdfContext for each frame where primary_ref is PRIMARY_REF_NONE.
2018-12-08cdf: make CdfThreadContext allocation failure safeJanne Grunau
2018-11-25Add some more constants from section 3Ronald S. Bultje
2018-11-25Move Av1FrameHeader and Av1SequenceHeader into public headersRonald S. Bultje
Add DAV1D_/Dav1d prefix to everything.
2018-10-04Correctly use dav1d_ prefix for global symbolsHenrik Gramner
2018-09-22Initial decoder implementation.Ronald S. Bultje
With minor contributions from: - Jean-Baptiste Kempf <jb@videolan.org> - Marvin Scholz <epirat07@gmail.com> - Hugo Beauzée-Luyssen <hugo@videolan.org>