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.c
AgeCommit message (Collapse)Author
2018-12-10cdf: fix memleak in dav1d_cdf_thread_unrefJanne Grunau
Observed with clusterfuzz-testcase-minimized-dav1d_fuzzer_mt-5700224002031616. Credits to oss-fuzz.
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-31ref: don't leave dangling pointers around when freeing Dav1dRefJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2018-10-21Update txpart/inter_txtp tables for intra frames also.Ronald S. Bultje
These can be used in intrabc coding. Fixes #74.
2018-10-04Correctly use dav1d_ prefix for global symbolsHenrik Gramner
2018-09-28cdf: init empty brackets to 0Steve Lhomme
with proper initializers
2018-09-28cdf: init empty brackets to 0Steve Lhomme
MSVC doesn't allow empty initializers
2018-09-22Add & use a thread compatibility layerHugo Beauzée-Luyssen
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>