]> git.nihav.org Git - nihav.git/commit
h264: implement 10-bit decoder
authorKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 7 Mar 2026 14:57:09 +0000 (15:57 +0100)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 7 Mar 2026 19:52:06 +0000 (20:52 +0100)
commit6d3942ad8de35fd052cc9b071b5a4afbfc330868
treecdd853f9b23f47eb96ba7dbfef67da6f9a50ea6b
parent7ccf789b73a46d12e53b37b7416a4e66c4526374
h264: implement 10-bit decoder

It can easily support other bitdepths but currently there's no need for that.
15 files changed:
nihav-itu/src/codecs/h264/high/cabac.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/cavlc.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/decoder_mt.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/decoder_st.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/dispatch.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/dsp/mc/debug.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/dsp/mc/mod.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/dsp/mc/release.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/dsp/mod.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/loopfilter.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/mb_recon.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/mod.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/pic_ref.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/high/types.rs [new file with mode: 0644]
nihav-itu/src/codecs/h264/mod.rs