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
2016-08-19avcodec/cfhd: Increase minimum band dimension to 3Michael Niedermayer
The implementation does not currently support len=2 Fixes out of array accesses Fixes: 29d1b3db5ba2205e82b0b3a533e057a3/asan_heap-oob_12b650c_9254_3b8c4e4d931eb2c32841c18ebb297f1d.avi Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-07-17cosmetics: fix some misspelled wordsJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2016-06-10avcodec/cfhd: Set dimensions unconditionallyMichael Niedermayer
Fixes Ticket5215 Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-05avcodec/cfhd: clear idwt_buf on allocationMichael Niedermayer
This avoids use of uninitialized variables and might make bugs in general easier to reproduce Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-05-23libavcodec/cfhd: fixed wrong printf formatdsmudhar
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-04-28avcodec/cfhd: Don't decode coefficients if no end of header tag found. Fixes ↵Kieran Kunhya
fuzzed files such as the one in in ticket #5383
2016-03-29cfhd: Do not initialize context sizeVittorio Giovara
Otherwise probing and stream analisys will report a correct coded size but an empty visible size. Approved by: kieran Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-03-06lavc/cfhd: Remove one more \n from avpriv_report_missing_feature().Carl Eugen Hoyos
2016-03-06lavc/cfhd: Sanitize avpriv_report_missing_feature() usage.Carl Eugen Hoyos
2016-03-06avcodec/cfhd: Fixes cfhd_odd.mov which has a resolution of 496x241Kieran Kunhya
In this case container width/height is better however. Thanks to koda for the sample
2016-02-27avcodec/cfhd: Add support for 12-bit RGBA.Kieran Kunhya
Plays all known samples
2016-02-27cfhd: reallocate internal buffers on format change.Kieran Kunhya
Fixes some, but not all, of the threading fuzz crashes
2016-02-12avcodec/cfhd: Fix errors with valid files.Kieran Kunhya
2016-02-12avcodec/cfhd: Check the number of tag/value pairsMichael Niedermayer
Fixes potentially long loop Fixes: CID1351382/11 Reviewed-by: Kieran Kunhya <kieran@kunhya.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-02-03cfhd: fix off-by-one error in level checkAndreas Cadhalpun
This fixes out-of-bounds writes causing segmentation faults. Found-by: Piotr Bandurski <ami_stuff@o2.pl> Reviewed-by: Kieran Kunhya <kierank@obe.tv> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2016-02-01avcodec/cfhd: Make sure we have an end of header tag before allocating a frame.Kieran Kunhya
Fixes tickets #5208 and #5209
2016-01-30avcodec: Cineform HD DecoderKieran Kunhya
Decodes YUV 4:2:2 10-bit and RGB 12-bit files. Older files with more subbands, skips, Bayer, alpha not supported. Alpha requires addition of GBRAP12 pixel format.