aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-codec-support
Commit message (Expand)AuthorAgeFilesLines
* codec_support/test: add test_decoding_raw()Kostya Shishkov2024-04-231-0/+117
* fix clippy warningsKostya Shishkov2023-07-263-33/+9
* codec_support/test: add a function for testing multi-threaded decodersKostya Shishkov2023-06-101-0/+173
* rename "str" variable to avoid confusion with the primitive typeKostya Shishkov2023-02-171-2/+2
* give 'str' variables more appropriate namesKostya Shishkov2022-11-041-9/+9
* fix some clippy warningsKostya Shishkov2022-09-221-12/+3
* codec-support: add division support for FFTComplexKostya Shishkov2022-06-161-1/+16
* codec_support/test: add test_decode_images()Kostya Shishkov2021-12-301-0/+61
* replace vec.truncate(0) with vec.clear()Kostya Shishkov2021-10-294-11/+11
* codec_support: fix doctestsKostya Shishkov2021-10-291-8/+8
* codec_support: add function for calculating LPC filterKostya Shishkov2021-10-263-0/+52
* codec_support/codecs: add negation for MVKostya Shishkov2021-10-141-1/+8
* codec_support/imgwrite: convert packed YUV format before writingKostya Shishkov2021-10-061-2/+18
* codec_support/imgwrite: flip alpha plane tooKostya Shishkov2021-09-221-7/+10
* make encoder test functions accept encoder-specific optionsKostya Shishkov2021-08-081-2/+4
* codec_support: add compress_sample() for IMA ADPCM stateKostya Shishkov2021-08-071-0/+7
* codec_support: derive usual traits for IMA ADPCM stateKostya Shishkov2021-08-071-0/+1
* fix clippy warnings for update to rustc 1.46Kostya Shishkov2021-04-043-5/+6
* codec_support/h263: pred_quant mode implies that AC coefficients should be pr...Kostya Shishkov2020-12-221-1/+14
* codec_support/h263: add intra block reconstruction mode with unquantised DCsKostya Shishkov2020-12-201-2/+106
* codec_support/h263: add IDCT from Annex WKostya Shishkov2020-12-201-0/+113
* codec_support/data: fix GenericCache internal sizeKostya Shishkov2020-12-051-2/+2
* fix some warnings (unneeded parentheses, missing dyn keyword)Kostya Shishkov2020-09-271-6/+6
* move QMF implementation into nihav_codec_supportKostya Shishkov2020-06-303-0/+362
* codec_support/blockdsp: add halfpel interpolation functionsKostya Shishkov2020-06-231-0/+54
* make HAMShuffler genericKostya Shishkov2020-06-161-7/+7
* codec_support/test: add test_encoding_md5() for testing encoders by output hashKostya Shishkov2020-06-161-0/+142
* codec_support: fix or silence clippy warningsKostya Shishkov2020-06-1611-7/+28
* codec_support/vq: make ELBG report the number of meaningful codewordsKostya Shishkov2020-06-151-7/+23
* codec_support/vq: use 1% improvement as a threshold in ELBG loopKostya Shishkov2020-06-151-1/+1
* codec_support/vq: calculate full cluster distortion instead of an averageKostya Shishkov2020-06-151-3/+0
* codec_support/vq: do not move empty group centroidKostya Shishkov2020-06-151-1/+3
* add declared bitdepth to NAVideoInfoKostya Shishkov2020-06-071-1/+1
* remove trailing whitespacesKostya Shishkov2020-06-061-1/+1
* codec_support/test: document enc_video moduleKostya Shishkov2020-06-011-0/+21
* codec_support/test: add remuxing testsKostya Shishkov2020-06-011-0/+166
* introduce interface and support code for encodersKostya Shishkov2020-05-302-0/+132
* codec_support: add module for generic vector quantisationKostya Shishkov2020-05-305-0/+433
* codec_support: factor out PNM writing into separate moduleKostya Shishkov2020-05-263-192/+256
* codec_support/h263: fix some cases related to Vivo 2.0Kostya Shishkov2020-05-011-2/+3
* move IMA ADPCM decoder into codec_supportKostya Shishkov2020-04-162-0/+62
* remove trailing whitespacesKostya Shishkov2020-04-152-2/+2
* codec_support/h263: fix delta calculation in the deblocking filterKostya Shishkov2020-04-081-2/+2
* codec_support/h263: fix slice reset conditionKostya Shishkov2020-04-081-1/+1
* codec_support/h263: fix references used in PB-frame reconstructionKostya Shishkov2020-04-081-6/+6
* codec_support/h263: add OBMC featureKostya Shishkov2020-04-072-6/+285
* switch h263 decoder to take options as flagsKostya Shishkov2020-04-061-3/+10
* codec_support/h263: factor out some macroblock decoding/reconstruction partsKostya Shishkov2020-04-051-140/+153
* codec_support/h263: validate that B-frame has enough reference dataKostya Shishkov2020-04-041-0/+4
* h263-based codecs: use proper motion compensationKostya Shishkov2020-04-034-45/+89