summaryrefslogtreecommitdiffstats
path: root/nihav-codec-support/src/test
Commit message (Collapse)AuthorAgeFilesLines
* codec_support/test: add test_decoding_raw()Kostya Shishkov2024-04-231-0/+117
| | | | | This function will be used to test decoders with payload from raw streams (i.e. it requries raw stream demuxers and packetisation steps).
* fix clippy warningsKostya Shishkov2023-07-262-4/+2
|
* 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
|
* codec_support/test: add test_decode_images()Kostya Shishkov2021-12-301-0/+61
|
* make encoder test functions accept encoder-specific optionsKostya Shishkov2021-08-081-2/+4
|
* 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-162-1/+4
|
* 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: factor out PNM writing into separate moduleKostya Shishkov2020-05-261-192/+5
|
* support interleaved audio properlyKostya Shishkov2020-03-061-3/+11
| | | | | | Now NAAudioBuffer has step field which tells the distance to the next sample in the channel. This can be used to work with interleaved audio stored as native samples (instead of packed buffer like before).
* split nihav-codec-support crate from nihav-coreKostya Shishkov2020-02-204-0/+851
The former is intended just for NihAV decoders, the latter is for both NihAV crates and for the code using NihAV.