aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-codec-support/src/codecs
Commit message (Collapse)AuthorAgeFilesLines
* fix clippy warningsKostya Shishkov2023-07-261-29/+7
|
* give 'str' variables more appropriate namesKostya Shishkov2022-11-041-9/+9
|
* fix some clippy warningsKostya Shishkov2022-09-221-12/+3
|
* replace vec.truncate(0) with vec.clear()Kostya Shishkov2021-10-292-7/+7
|
* codec_support: fix doctestsKostya Shishkov2021-10-291-8/+8
|
* codec_support/codecs: add negation for MVKostya Shishkov2021-10-141-1/+8
|
* 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-042-4/+5
|
* codec_support/h263: pred_quant mode implies that AC coefficients should be ↵Kostya Shishkov2020-12-221-1/+14
| | | | predicted before quantisation too
* 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
|
* fix some warnings (unneeded parentheses, missing dyn keyword)Kostya Shishkov2020-09-271-6/+6
|
* codec_support/blockdsp: add halfpel interpolation functionsKostya Shishkov2020-06-231-0/+54
|
* make HAMShuffler genericKostya Shishkov2020-06-161-7/+7
|
* codec_support: fix or silence clippy warningsKostya Shishkov2020-06-165-1/+12
|
* 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-151-1/+1
|
* 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
| | | | This will allow to add further options like OBMC without changing the interface.
* 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
|
* codec_support/h263: allocate more space in MV predictorKostya Shishkov2020-04-031-1/+1
| | | | In case of left neigbour access wraparound this will always return zero MV.
* codec_support/h263: fix DC clipping functionKostya Shishkov2020-04-031-3/+3
|
* codec_support/h263: use proper H.263 deblockingKostya Shishkov2020-04-021-46/+44
|
* codec_support/h263: fix tabsKostya Shishkov2020-04-021-20/+20
|
* make edge_emu() accept block alignmentKostya Shishkov2020-03-241-4/+13
|
* split nihav-codec-support crate from nihav-coreKostya Shishkov2020-02-206-0/+2239
The former is intended just for NihAV decoders, the latter is for both NihAV crates and for the code using NihAV.